diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-12 01:32:31 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-12 01:32:31 -0300 |
commit | b3a5694c6ba4ef605b01bb6a4b8ab2ef6739aa06 (patch) | |
tree | 34b9d7abfbe3a375b597c078e402d7ed08081f48 /libre-testing | |
parent | c9c6a61b8a9ada57301b68ef030e0f4ebb51bf9f (diff) | |
download | abslibre-b3a5694c6ba4ef605b01bb6a4b8ab2ef6739aa06.tar.gz abslibre-b3a5694c6ba4ef605b01bb6a4b8ab2ef6739aa06.tar.bz2 abslibre-b3a5694c6ba4ef605b01bb6a4b8ab2ef6739aa06.zip |
iceweasel-libre: prolix pgo script
Diffstat (limited to 'libre-testing')
-rw-r--r-- | libre-testing/iceweasel-libre/PKGBUILD | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/libre-testing/iceweasel-libre/PKGBUILD b/libre-testing/iceweasel-libre/PKGBUILD index 03f4660be..bafff0c97 100644 --- a/libre-testing/iceweasel-libre/PKGBUILD +++ b/libre-testing/iceweasel-libre/PKGBUILD @@ -157,25 +157,22 @@ build() { export MOZ_MAKE_FLAGS="$MAKEFLAGS" unset MAKEFLAGS - # Enable PGO for x86_64 and mips64el only. i686 currently has problems: - # Either segfaults since gcc 4.8, or the linker runs out of memory - # If you discover that PGO again works on i686, please file a bug - if $_pgo; then - - if [[ $CARCH != i686 ]]; then - export DISPLAY=:99 - Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY & - _fail=0 - - make -f client.mk build MOZ_PGO=1 || _fail=1 - - kill $! || true - return $_fail - else - make -f client.mk build - fi - + # Enable PGO for x86_64 only. i686 currently has problems: + # Either segfaults since gcc 4.8, or the linker runs out of memory + # If you discover that PGO again works on i686, please file a bug + if [[ $CARCH = x86_64 ]]; then + export DISPLAY=:99 + Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY & + _fail=0 + + make -f client.mk build MOZ_PGO=1 || _fail=1 + + kill $! || true + return $_fail + else + make -f client.mk build + fi else make -f client.mk build fi |