diff options
-rw-r--r-- | devel/stlport/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile index ae8bfcfb0075..19c14ddba189 100644 --- a/devel/stlport/Makefile +++ b/devel/stlport/Makefile @@ -46,8 +46,9 @@ CXX= icpc CFLAGS= -O -ip -axiMKW CXXFLAGS= ${CFLAGS} .else -CFLAGS= -CXXFLAGS= +# There's segfault on -current if you use non default CFLAGS. +CFLAGS= -O -pipe +CXXFLAGS= ${CFLAGS} .endif .if ${COMPILER} == gcc && ${OSVERSION} < 460000 |