We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dd5c7f commit 7c301b5Copy full SHA for 7c301b5
configure.in
@@ -608,6 +608,16 @@ dnl check for icc
608
CCDEP="$CC"
609
610
else
611
+ # other compilers might support SSE inline assembly too
612
+ # (the cray compiler, for example)
613
+ if test $enable_sse3 = yes; then
614
+ echo Using SSE3 and SSE2 macros!
615
+ AC_DEFINE(SSE3,1,Compile with SSE3 support)
616
+ elif test $enable_sse2 = yes; then
617
+ echo Using SSE2 macros only!
618
+ AC_DEFINE(SSE2,1,Compile with SSE2 support)
619
+ fi
620
+
621
DEPFLAGS="-M"
622
CFLAGS="$CFLAGS -O"
623
DEBUG_FLAG="-g"
0 commit comments