Bug 1841201 - Work around tail-call optimization not happening on mips*. r=markh

Differential Revision: https://phabricator.services.mozilla.com/D182687
This commit is contained in:
Mike Hommey 2023-07-04 20:35:39 +00:00
parent 2793a6f959
commit d59ba4dd7a

View File

@ -152,3 +152,7 @@ DEFINES['HAVE_ZLIB'] = True
if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
CXXFLAGS += CONFIG['MOZ_GTK3_CFLAGS']
# Work around bug 1841201.
if CONFIG['CPU_ARCH'] in ('mips32', 'mips64'):
DEFINES['musttail'] = 'nomusttail'