NO - SSE3... add -msse3.... NO! NEVER!
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 2 Oct 2011 10:57:26 +0000 (10:57 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 2 Oct 2011 10:57:26 +0000 (10:57 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@63744 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

configure.ac

index 0ad2ce9..411ef0e 100644 (file)
@@ -1256,7 +1256,15 @@ AC_ARG_ENABLE(cpu-sse3,
 )
 
 
-EVAS_SSE3_CFLAGS="-msse3 "
+# as a big warnign flag to anyone doing stuff like this...
+# NEVER EVER EVER EVER put **OPTIMIZATION** flags in
+# buidl flags in makefiles (from configure or anywhere else)
+# EVER as trhis scfrerws your abuility to build 1 binary and
+# cover ALL x86 arch's. this is the HEIGHT of WRONG. if the
+# person building choses to add optimization flags themselves
+# and decide the minimum baseline cpu arch is X then that's
+# their business, but NEVEr should it be done here. EVER.
+#EVAS_SSE3_CFLAGS="-msse3 "
 if test "x$build_cpu_sse3" = "xyes" ; then
    CFLAGS="${CFLAGS} ${EVAS_SSE3_CFLAGS}"
 fi