Skip to content
Snippets Groups Projects
Commit cb5e16a9 authored by Kris Wright's avatar Kris Wright
Browse files

Bug 1576515 - Enable PHC on Mac r=glandium

Note that we don't appear to support 32-bit on mac so it'd be redundant to check for it.

Differential Revision: https://phabricator.services.mozilla.com/D124919
parent 9253af40
No related branches found
No related tags found
No related merge requests found
......@@ -77,12 +77,11 @@ def phc_default(milestone, target, replace_malloc_default, replace_malloc):
return False
# Both Linux32 and Win32 have frequent crashes when stack tracing (for
# unclear reasons), so PHC is enabled only on 64-bit only in both cases.
#
# XXX: PHC is implemented but not yet enabled on Mac. Bug 1576515 is about
# enabling it on Mac, but it is blocked by bug 1035892.
return (
target.os == "GNU" and target.kernel == "Linux" and target.bitness == 64
) or (target.kernel == "WINNT" and target.bitness == 64)
(target.os == "GNU" and target.kernel == "Linux" and target.bitness == 64)
or (target.kernel == "WINNT" and target.bitness == 64)
or (target.os == "OSX")
)
option(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment