Bug 1697098 - Default to --enable-bootstrap for arm64 mac builds. r=firefox-build-system-reviewers,andi,sheehan,mhentges

Differential Revision: https://phabricator.services.mozilla.com/D107601
This commit is contained in:
Mike Hommey 2021-03-09 21:27:52 +00:00
Родитель 8101c15778
Коммит b1f45b497d
1 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -208,9 +208,18 @@ def moz_fetches_dir(value):
return value[0]
@depends(host, milestone.is_nightly, "MOZ_AUTOMATION")
def bootstrap_default(host, is_nightly, automation):
if automation:
return False
if host.cpu == "aarch64" and host.os == "OSX" and is_nightly:
return True
option(
"--enable-bootstrap",
help="Automatically bootstrap or update some toolchains",
default=bootstrap_default,
help="{Automatically bootstrap or update some toolchains|Disable bootstrap or update of toolchains}",
)