Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
|
Michael Achenbach
2017/04/18 13:46:04
nit: 2017
rayb
2017/04/25 00:41:04
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/sysroot.gni") | |
|
Michael Achenbach
2017/04/18 13:46:04
Why is sysroot included here?
rayb
2017/04/25 00:41:04
That was a mistake.
| |
| 6 import("//build/toolchain/gcc_toolchain.gni") | |
| 7 | |
| 8 gcc_toolchain("ppc64") { | |
| 9 cc = "gcc" | |
| 10 cxx = "g++" | |
| 11 | |
| 12 readelf = "readelf" | |
| 13 nm = "nm" | |
| 14 ar = "ar" | |
| 15 ld = cxx | |
| 16 | |
| 17 toolchain_args = { | |
| 18 current_cpu = "ppc64" | |
| 19 current_os = "aix" | |
| 20 is_clang = false | |
| 21 } | |
| 22 } | |
| OLD | NEW |