diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-05-28 07:42:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 07:42:21 +0200 |
commit | bee00a4a3db557ffd950c9704558e8c7ef89b6dd (patch) | |
tree | 5de690c4db2bd97f5a9d07d2a0c2b5b446645600 /build | |
parent | 10623b2a31db629e42e9519c8428c5f6f23c8203 (diff) | |
parent | a147b682697db1ce8e11010c72a19edb7eb7c213 (diff) | |
download | UXP-bee00a4a3db557ffd950c9704558e8c7ef89b6dd.tar UXP-bee00a4a3db557ffd950c9704558e8c7ef89b6dd.tar.gz UXP-bee00a4a3db557ffd950c9704558e8c7ef89b6dd.tar.lz UXP-bee00a4a3db557ffd950c9704558e8c7ef89b6dd.tar.xz UXP-bee00a4a3db557ffd950c9704558e8c7ef89b6dd.zip |
Merge pull request #399 from MoonchildProductions/revert-395-buildsystem-work
Revert "Always build with SSE2 support & display an error if not available"
Diffstat (limited to 'build')
-rw-r--r-- | build/autoconf/compiler-opts.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/autoconf/compiler-opts.m4 b/build/autoconf/compiler-opts.m4 index 82d0b43fc..c47d792f4 100644 --- a/build/autoconf/compiler-opts.m4 +++ b/build/autoconf/compiler-opts.m4 @@ -176,8 +176,8 @@ if test "$GNU_CC"; then CFLAGS="$CFLAGS -ffunction-sections -fdata-sections" CXXFLAGS="$CXXFLAGS -ffunction-sections -fdata-sections" fi - CFLAGS="$CFLAGS -fno-math-errno -msse2 -mfpmath=sse" - CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-math-errno -msse2 -mfpmath=sse" + CFLAGS="$CFLAGS -fno-math-errno" + CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-math-errno" if test -z "$CLANG_CC"; then case "$CC_VERSION" in |