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

Side by Side Diff: tools/gn/bootstrap/build_aix.ninja.template

Issue 2807463004: GN: aix port along with linux_s390x, linux_ppc64 and linux_ppc64le support. (Closed)
Patch Set: rebased, cleaned up the code, addressed comments 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
« tools/gn/args.cc ('K') | « tools/gn/bootstrap/bootstrap.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 rule cc
2 command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $ out
3 description = CC $out
4 depfile = $out.d
5 deps = gcc
6
7 rule cxx
8 command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o $out
9 description = CXX $out
10 depfile = $out.d
11 deps = gcc
12
13 rule alink_thin
14 command = rm -f $out && $ar rcsT $out $in
15 description = AR $out
16
17 rule link
18 command = $ld $ldflags -o $out $in $libs $solibs
19 description = LINK $out
OLDNEW
« tools/gn/args.cc ('K') | « tools/gn/bootstrap/bootstrap.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698