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

Side by Side Diff: build/toolchain/aix/BUILD.gn

Issue 2815453004: For building v8 using gn on aix_ppc64, linux_s390x and linux_ppc64. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698