Bug 1841199 - Work around tail-call optimization not happening on mips* and ppc64. r=gfx-reviewers,lsalzman

Differential Revision: https://phabricator.services.mozilla.com/D182686
This commit is contained in:
Mike Hommey 2023-07-03 22:57:24 +00:00
parent 24ef014417
commit 5eff8de550

View File

@ -614,3 +614,7 @@ if CONFIG['CPU_ARCH'] in ('mips32', 'mips64'):
# The skia code uses `mips` as a variable, but it's a builtin preprocessor
# macro on mips that expands to `1`.
DEFINES['mips'] = False
# Work around bug 1841199.
if CONFIG['CPU_ARCH'] in ('mips32', 'mips64', 'ppc64'):
DEFINES['musttail'] = 'nomusttail'