diff options
author | maho <maho@FreeBSD.org> | 2004-08-17 14:22:05 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-08-17 14:22:05 +0800 |
commit | b8ba16a2a4120bb30c68353ef5ea0df3e141a7bd (patch) | |
tree | e065d65f1bcfc8c89187dee1184145b5ed485523 /graphics/povray | |
parent | aee903861b1cb1e39457c7596035e21874e56e75 (diff) | |
download | freebsd-ports-gnome-b8ba16a2a4120bb30c68353ef5ea0df3e141a7bd.tar.gz freebsd-ports-gnome-b8ba16a2a4120bb30c68353ef5ea0df3e141a7bd.tar.zst freebsd-ports-gnome-b8ba16a2a4120bb30c68353ef5ea0df3e141a7bd.zip |
update Intel C Compiler optimization flag
Diffstat (limited to 'graphics/povray')
-rw-r--r-- | graphics/povray/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/povray/Makefile b/graphics/povray/Makefile index 019807efec43..7664ac32f69c 100644 --- a/graphics/povray/Makefile +++ b/graphics/povray/Makefile @@ -52,8 +52,8 @@ CXXFLAGS+= -mfancy-math-387 -mpreferred-stack-boundary=3 -malign-double .if defined(WITH_ICC) CC= ${LOCALBASE}/intel_cc_80/bin/icc CXX= ${LOCALBASE}/intel_cc_80/bin/icpc -CFLAGS= -O3 -tpp7 -xKW -Vaxlib -CXXFLAGS= -O3 -tpp7 -xKW -Vaxlib +CFLAGS= -O3 -tpp7 -xN -Vaxlib +CXXFLAGS= -O3 -tpp7 -xN -Vaxlib .endif CONFIGURE_TARGET= --target=${MACHINE_ARCH}-portbld-freebsd${OSREL} |