Bug 1481864 - disable the sandbox on aarch64 windows by default; r=gps

The Chromium sandbox doesn't have the necessary arch-specific support.
This commit is contained in:
Nathan Froyd 2018-08-20 17:22:44 -04:00
Родитель 562477257c
Коммит 2c50d79c91
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -3099,6 +3099,13 @@ if test -n "$MOZ_TSAN" -o -n "$MOZ_ASAN"; then
esac esac
fi fi
case "$OS_TARGET:$CPU_ARCH" in
WINNT:aarch64)
# No sandbox support on AArch64 Windows.
MOZ_SANDBOX=
;;
esac
MOZ_ARG_DISABLE_BOOL(sandbox, MOZ_ARG_DISABLE_BOOL(sandbox,
[ --disable-sandbox Disable sandboxing support], [ --disable-sandbox Disable sandboxing support],
MOZ_SANDBOX=, MOZ_SANDBOX=,