Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Build errors

Krzysztof Jan Modras edited this page Jan 27, 2021 · 3 revisions

On MacOS 11 mach may fail to check MACOSX_DEPLOYMENT_TARGET as it's casted to number instead of string. A fix is to update mozilla-release/python/mozbuild/mozbuild/virtualenv.py in line 447 and change it to

sysconfig_target = str(distutils.sysconfig.get_config_var(
    "MACOSX_DEPLOYMENT_TARGET"
))

Clone this wiki locally