REVIEW: Disable linux installer build on arm64

This commit is contained in:
Aleksei Kuzmin 2017-12-15 01:06:39 +03:00
Родитель 341dcbe5f6
Коммит 65a15e2ea0
2 изменённых файлов: 12 добавлений и 0 удалений

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

@ -25,6 +25,12 @@ if (target_cpu == "arm64") {
fatal_linker_warnings = false
}
# ERROR at //chrome/installer/linux/BUILD.gn:385:7: Assertion failed.
# Linux installer not configured for this architecture.
if (target_cpu == "arm64") {
enable_linux_installer = false
}
# Configuration for mips64el
if (target_cpu == "mips64el") {
is_clang = false

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

@ -38,6 +38,12 @@ if (target_cpu == "arm64") {
fatal_linker_warnings = false
}
# ERROR at //chrome/installer/linux/BUILD.gn:385:7: Assertion failed.
# Linux installer not configured for this architecture.
if (target_cpu == "arm64") {
enable_linux_installer = false
}
# On Windows, we cannot use allocator shim because even though this is
# a non-component build, we still use the dynamic CRT with which the shim
# does not work