mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
e551e11340
As of bug 1430036 it was only set when building on CentOS, and as of bug 1432398, we don't have CentOS-based docker images anymore. --HG-- extra : rebase_source : 5ade9bee773bca3283cfdb9d69209033fe82253f
14 lines
361 B
Plaintext
14 lines
361 B
Plaintext
. "$topsrcdir/build/unix/mozconfig.linux"
|
|
|
|
export MOZ_LINUX_32_SSE2_STARTUP_ERROR=1
|
|
|
|
CFLAGS="$CFLAGS -msse -msse2 -mfpmath=sse"
|
|
CXXFLAGS="$CXXFLAGS -msse -msse2 -mfpmath=sse"
|
|
|
|
if test `uname -m` = "x86_64"; then
|
|
CC="$CC -m32 -march=pentium-m"
|
|
CXX="$CXX -m32 -march=pentium-m"
|
|
ac_add_options --target=i686-pc-linux
|
|
ac_add_options --host=i686-pc-linux
|
|
fi
|