Bug 1753107 - Enable framepointers on all channels for macOS arm64 builds. r=glandium

Differential Revision: https://phabricator.services.mozilla.com/D137574
This commit is contained in:
Markus Stange 2022-02-02 15:52:31 +00:00
parent 586dd7d714
commit 648b57016d

View file

@ -2285,6 +2285,7 @@ def frame_pointer_default(optimize, debug, target, msan, asan, ubsan):
or asan
or ubsan
or (target.os == "WINNT" and target.cpu in ("x86", "aarch64"))
or (target.os == "OSX" and target.cpu == "aarch64")
)