Try updated patch

This commit is contained in:
Mikhail Novosyolov 2018-10-21 11:42:50 +03:00
parent ac2d1f7a60
commit d6b26d26f3

View file

@ -22,11 +22,13 @@ Author: Mikhail Novosyolov <m.novosyolov@rosalinux.ru>
--- a/build/config/compiler/compiler.gni 2018-10-21 02:15:50.290369454 +0300
+++ b/build/config/compiler/compiler.gni 2018-10-21 02:20:51.670476348 +0300
@@ -163,6 +163,7 @@
@@ -162,8 +162,7 @@
# Linux or Fuchsia.
# TODO(pcc): Enable lld on more architectures on Linux. E.g. we probably need
# to fix some of crbug.com/742655 to enable it on ARM.
use_lld =
+ !use_gold &&
is_clang &&
- use_lld =
- is_clang &&
+ use_lld = !use_gold && is_clang &&
(is_win || is_fuchsia || (use_thin_lto && target_os != "chromeos") ||
(is_linux && current_cpu == "x64" && target_os != "chromeos") ||
(is_android && (current_cpu != "arm" || arm_version >= 7) &&