From: Steve Underwood Date: Sun, 24 Sep 2017 20:38:29 +0000 (+0100) Subject: libspandsp's -mssexx selection tags for SSE4.1 and SSE4.2 were incorrect in X-Git-Tag: v1.8.0~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=542825ef812bc70d9d7f3ca2768793559e454a23;p=thirdparty%2Ffreeswitch.git libspandsp's -mssexx selection tags for SSE4.1 and SSE4.2 were incorrect in configure.ac --- diff --git a/libs/spandsp/configure.ac b/libs/spandsp/configure.ac index b26b792758..57998b8713 100644 --- a/libs/spandsp/configure.ac +++ b/libs/spandsp/configure.ac @@ -370,10 +370,10 @@ gnu) COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS" fi if test "$enable_sse4_2" = "yes" ; then - COMP_VENDOR_CFLAGS="-msse42 $COMP_VENDOR_CFLAGS" + COMP_VENDOR_CFLAGS="-msse4.2 $COMP_VENDOR_CFLAGS" fi if test "$enable_sse4_1" = "yes" ; then - COMP_VENDOR_CFLAGS="-msse41 $COMP_VENDOR_CFLAGS" + COMP_VENDOR_CFLAGS="-msse4.1 $COMP_VENDOR_CFLAGS" fi if test "$enable_ssse3" = "yes" ; then COMP_VENDOR_CFLAGS="-mssse3 $COMP_VENDOR_CFLAGS" @@ -431,10 +431,10 @@ intel) COMP_VENDOR_CFLAGS="-mavx $COMP_VENDOR_CFLAGS" fi if test "$enable_sse4_2" = "yes" ; then - COMP_VENDOR_CFLAGS="-msse42 $COMP_VENDOR_CFLAGS" + COMP_VENDOR_CFLAGS="-msse4.2 $COMP_VENDOR_CFLAGS" fi if test "$enable_sse4_1" = "yes" ; then - COMP_VENDOR_CFLAGS="-msse41 $COMP_VENDOR_CFLAGS" + COMP_VENDOR_CFLAGS="-msse4.1 $COMP_VENDOR_CFLAGS" fi if test "$enable_ssse3" = "yes" ; then COMP_VENDOR_CFLAGS="-mssse3 $COMP_VENDOR_CFLAGS"