mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
Force use of level 1 Liftetime DSE optimization on modern GCC
Instead of completely disabling it.
This commit is contained in:
parent
7cc4a8fa98
commit
b2917cce1d
1 changed files with 6 additions and 7 deletions
|
|
@ -183,16 +183,15 @@ if test "$GNU_CC"; then
|
|||
case "$CC_VERSION" in
|
||||
4.*)
|
||||
;;
|
||||
5.*)
|
||||
;;
|
||||
*)
|
||||
# Lifetime Dead Store Elimination level 2 (default in GCC6+) breaks Gecko.
|
||||
# Ideally, we'd use -flifetime-dse=1, but that means we'd forcefully
|
||||
# enable it on optimization levels where it would otherwise not be enabled.
|
||||
# So we disable it entirely. But since that would mean inconsistency with
|
||||
# GCC5, which has level 1 depending on optimization level, disable it on
|
||||
# GCC5 as well, because better safe than sorry.
|
||||
# Instead of completely disabling this optimization on newer GCC's,
|
||||
# we'll force them to use level 1 optimization with -flifetime-dse=1.
|
||||
# Add it first so that a mozconfig can override by setting CFLAGS/CXXFLAGS.
|
||||
CFLAGS="-fno-lifetime-dse $CFLAGS"
|
||||
CXXFLAGS="-fno-lifetime-dse $CXXFLAGS"
|
||||
CFLAGS="-flifetime-dse=1 $CFLAGS"
|
||||
CXXFLAGS="-flifetime-dse=1 $CXXFLAGS"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue