| commit | d27591a4bbbc7b097eaef4e8bc242db5c06097aa | [log] [tgz] |
|---|---|---|
| author | Sean Klein <smklein@google.com> | Mon Sep 14 16:01:38 2015 -0700 |
| committer | Sean Klein <smklein@google.com> | Mon Sep 14 16:01:38 2015 -0700 |
| tree | d673c54387e78af53121ba6f7960cf12c3005c62 | |
| parent | 81937c3f013dd09b3930949841e611964c5ceb3d [diff] |
Fixing previously unusable 32 bit gcc toolchain BUG=https://github.com/domokit/mojo/issues/396 R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/1331283005 .
diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn index 15ad5bd..9145284 100644 --- a/build/toolchain/linux/BUILD.gn +++ b/build/toolchain/linux/BUILD.gn
@@ -53,7 +53,7 @@ gcc_toolchain("x86") { cc = "${compiler_prefix}gcc" - cxx = "$compiler_prefix}g++" + cxx = "${compiler_prefix}g++" readelf = "readelf" nm = "nm"