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

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

Issue 2643583002: GN: Fix cross ARM64 and cross MIPS builds. (Closed)
Patch Set: Created 3 years, 11 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 | runtime/platform/globals.h » ('j') | tools/gn.py » ('J')
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 3c511336403bfce887427a9a12dbf44230ce2e84..251e167a9b5b0f16bb6d486240a37893550a4ff4 100644
--- a/build/toolchain/linux/BUILD.gn
+++ b/build/toolchain/linux/BUILD.gn
@@ -109,8 +109,8 @@ gcc_toolchain("x64") {
}
gcc_toolchain("mipsel") {
- cc = "${toolchain_prefix}gcc"
- cxx = "${toolchain_prefix}g++"
+ cc = "${toolchain_prefix}gcc -EL"
zra 2017/01/18 03:21:33 Please add these here instead: https://github.com
rmacnak 2017/01/20 22:54:47 Done.
+ cxx = "${toolchain_prefix}g++ -EL"
ar = "${toolchain_prefix}ar"
ld = cxx
readelf = "${toolchain_prefix}readelf"
« no previous file with comments | « no previous file | runtime/platform/globals.h » ('j') | tools/gn.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698