index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-04-21 20:31:01 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-04-21 20:31:01 +0200 |
commit | 17393e10e28e6a972de83e3720cc34a45e266856 (patch) | |
tree | 235f37425e122165b385e990272391e45cb283fa /extra/firefox/PKGBUILD | |
parent | 703fa81104790c820994fe99beee001413059af6 (diff) |
-rw-r--r-- | extra/firefox/PKGBUILD | 9 |
diff --git a/extra/firefox/PKGBUILD b/extra/firefox/PKGBUILD index 6eaccdb4..31c7632d 100644 --- a/extra/firefox/PKGBUILD +++ b/extra/firefox/PKGBUILD @@ -174,3 +174,12 @@ eval "$( /msg2 "Profiling instrumented browser..."/,/.\/mach build/d ' )" + +# libvpx has some hard-coded compiler flags for MMX, SSE, SSE2, use the correct one +# per CARCH (75.0 uses an intrisic _mm_empty now, which required the corresponding +# architecture flag to be preset - before it was merely embedding some assembly +# code with EMMS +if [ "${CARCH}" = "i686" ]; then + CFLAGS="$CFLAGS -mmmx" + CXXFLAGS="$CXXFLAGS -mmmx" +fi |