Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2952)

Unified Diff: build/toolchain/linux/BUILD.gn

Issue 2456463003: GN: Fix arm cross build to match gyp build (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/gn.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/linux/BUILD.gn
diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn
index ae090b0fb0e48db0ce42b7587581c4289d031821..265eea9d701bda53a3e0a6437282e322d1324b5b 100644
--- a/build/toolchain/linux/BUILD.gn
+++ b/build/toolchain/linux/BUILD.gn
@@ -22,13 +22,13 @@ if (use_goma) {
}
gcc_toolchain("arm") {
- cc = "${compiler_prefix}arm-linux-gnueabi-gcc"
- cxx = "${compiler_prefix}arm-linux-gnueabi-g++"
+ cc = "${compiler_prefix}arm-linux-gnueabihf-gcc"
+ cxx = "${compiler_prefix}arm-linux-gnueabihf-g++"
- ar = "arm-linux-gnueabi-ar"
+ ar = "arm-linux-gnueabihf-ar"
ld = cxx
- readelf = "arm-linux-gnueabi-readelf"
- nm = "arm-linux-gnueabi-nm"
+ readelf = "arm-linux-gnueabihf-readelf"
+ nm = "arm-linux-gnueabihf-nm"
toolchain_cpu = "arm"
toolchain_os = "linux"
« no previous file with comments | « no previous file | tools/gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698