From 5905f914424bd3d88fc3f13f3162c09041ac3827 Mon Sep 17 00:00:00 2001 From: Rebecca Chang Swee Fun Date: Mon, 17 Jan 2022 04:48:24 +0000 Subject: [PATCH 10/21] build: config: compiler: use_gold linker option Signed-off-by: Rebecca Chang Swee Fun --- build/config/compiler/compiler.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/config/compiler/compiler.gni b/build/config/compiler/compiler.gni index 36108aaf7a091..3b8732d8b4c40 100644 --- a/build/config/compiler/compiler.gni +++ b/build/config/compiler/compiler.gni @@ -223,7 +223,7 @@ declare_args() { (((is_linux || is_chromeos_lacros) && (current_cpu == "x64" || current_cpu == "x86" || current_cpu == "arm" || current_cpu == "arm64" || - current_cpu == "mipsel" || current_cpu == "mips64el")) || + current_cpu == "mipsel" || current_cpu == "mips64el" || current_cpu == "riscv64")) || (is_android && (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || current_cpu == "arm64"))) } -- 2.25.1