]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
libspandsp's -mssexx selection tags for SSE4.1 and SSE4.2 were incorrect in
authorSteve Underwood <steveu@coppice.org>
Sun, 24 Sep 2017 20:38:29 +0000 (21:38 +0100)
committerSteve Underwood <steveu@coppice.org>
Sun, 24 Sep 2017 20:38:29 +0000 (21:38 +0100)
configure.ac

libs/spandsp/configure.ac

index b26b7927589c59d9d4a0c677f9c6755281a4e3dd..57998b871337430d5ce1d00562f465971595c676 100644 (file)
@@ -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"