diff options
author | Martin Stransky <stransky@redhat.com> | 2020-10-16 08:19:34 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2020-10-16 08:19:34 +0200 |
commit | 65fabb34c1267a295007bc97b53cedc5a79e4154 (patch) | |
tree | 007025bdc9c0206dbd015ed473231e5ede0f9153 /firefox.spec | |
parent | merge fix (diff) | |
download | librewolf-fedora-ff-65fabb34c1267a295007bc97b53cedc5a79e4154.tar.gz librewolf-fedora-ff-65fabb34c1267a295007bc97b53cedc5a79e4154.tar.bz2 librewolf-fedora-ff-65fabb34c1267a295007bc97b53cedc5a79e4154.zip |
Actually disable the LTO
Diffstat (limited to 'firefox.spec')
-rw-r--r-- | firefox.spec | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec index e9cb490..8fe2e2f 100644 --- a/firefox.spec +++ b/firefox.spec @@ -614,10 +614,12 @@ echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig %endif %if 0%{?build_with_pgo} echo "ac_add_options MOZ_PGO=1" >> .mozconfig + # Temporary disabled due to GCC bug # Fixed by https://bugzilla.mozilla.org/show_bug.cgi?id=1671345 # Should be in Firefox 83 -echo "ac_add_options --enable-lto" >> .mozconfig +# echo "ac_add_options --enable-lto" >> .mozconfig + # PGO build doesn't work with ccache export CCACHE_DISABLE=1 %endif |