mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
0a4a1d8a63
32 changed files with 299 additions and 188 deletions
|
|
@ -768,6 +768,26 @@ AC_SUBST(MOZILLA_UAVERSION_U)
|
|||
|
||||
MOZ_DOING_LTO(lto_is_enabled)
|
||||
|
||||
dnl ========================================================
|
||||
dnl Spidermonkey link-time optimization support
|
||||
dnl ========================================================
|
||||
|
||||
# We want LTO enabled by default in Spidermonkey if we're building it shared.
|
||||
if test -n "$JS_SHARED_LIBRARY"; then
|
||||
JS_LTO=1
|
||||
fi
|
||||
|
||||
MOZ_ARG_DISABLE_BOOL(js-lto,
|
||||
[ --disable-js-lto Disable link-time optimization for the Spidermonkey library],
|
||||
JS_LTO=,
|
||||
JS_LTO=1)
|
||||
|
||||
if test -n "$JS_LTO"; then
|
||||
AC_DEFINE(JS_LTO)
|
||||
fi
|
||||
|
||||
AC_SUBST(JS_LTO)
|
||||
|
||||
dnl ========================================================
|
||||
dnl System overrides of the defaults for target
|
||||
dnl ========================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue