NO - SSE3... add -msse3.... NO! NEVER!

SVN revision: 63744
This commit is contained in:
Carsten Haitzler 2011-10-02 10:57:26 +00:00
parent de8b0a1137
commit c31b6a9dcd
1 changed files with 9 additions and 1 deletions

View 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