OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This template defines a GCC toolchain. | 5 # This template defines a GCC toolchain. |
6 # | 6 # |
7 # It requires the following variables specifying the executables to run: | 7 # It requires the following variables specifying the executables to run: |
8 # - cc | 8 # - cc |
9 # - cxx | 9 # - cxx |
10 # - ar | 10 # - ar |
11 # - ld | 11 # - ld |
12 # and the following which is used in the toolchain_args | 12 # and the following which is used in the toolchain_args |
13 # - toolchain_cpu_arch (What "cpu_arch" should be set to when invoking a | 13 # - toolchain_cpu_arch (What "cpu_arch" should be set to when invoking a |
14 # build using this toolchain.) | 14 # build using this toolchain.) |
15 # - toolchain_os (What "os" should be set to when invoking a build using this | 15 # - toolchain_os (What "os" should be set to when invoking a build using this |
16 # toolchain.) | 16 # toolchain.) |
17 template("gcc_toolchain") { | 17 template("gcc_toolchain") { |
18 toolchain(target_name) { | 18 toolchain(target_name) { |
| 19 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value") |
| 20 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value") |
| 21 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value") |
| 22 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ld\" value") |
| 23 assert(defined(invoker.toolchain_cpu_arch), |
| 24 "gcc_toolchain() must specify a \"toolchain_cpu_arch\"") |
| 25 assert(defined(invoker.toolchain_os), |
| 26 "gcc_toolchain() must specify a \"toolchain_os\"") |
| 27 |
| 28 # We can't do string interpolation ($ in strings) on things with dots in |
| 29 # them. To allow us to use $cc below, for example, we create copies of |
| 30 # these values in our scope. |
| 31 cc = invoker.cc |
| 32 cxx = invoker.cxx |
| 33 ar = invoker.ar |
| 34 ld = invoker.ld |
| 35 |
19 # Make these apply to all tools below. | 36 # Make these apply to all tools below. |
20 lib_prefix = "-l" | 37 lib_prefix = "-l" |
21 lib_dir_prefix="-L" | 38 lib_dir_prefix="-L" |
22 | 39 |
23 tool("cc") { | 40 tool("cc") { |
24 # cflags_pch_c | 41 # cflags_pch_c |
25 command = "$cc -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_c -
c \$in -o \$out" | 42 command = "$cc -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_c -
c \$in -o \$out" |
26 description = "CC \$out" | 43 description = "CC \$out" |
27 depfile = "\$out.d" | 44 depfile = "\$out.d" |
28 deps = "gcc" | 45 deps = "gcc" |
(...skipping 25 matching lines...) Expand all Loading... |
54 description = "STAMP \$out" | 71 description = "STAMP \$out" |
55 } | 72 } |
56 tool("copy") { | 73 tool("copy") { |
57 command = "ln -f \$in \$out 2>/dev/null || (rm -rf \$out && cp -af \$in \$
out)" | 74 command = "ln -f \$in \$out 2>/dev/null || (rm -rf \$out && cp -af \$in \$
out)" |
58 description = "COPY \$in \$out" | 75 description = "COPY \$in \$out" |
59 } | 76 } |
60 | 77 |
61 # When invoking this toolchain not as the default one, these args will be | 78 # When invoking this toolchain not as the default one, these args will be |
62 # passed to the build. They are ignored when this is the default toolchain. | 79 # passed to the build. They are ignored when this is the default toolchain. |
63 toolchain_args() { | 80 toolchain_args() { |
64 cpu_arch = toolchain_cpu_arch | 81 cpu_arch = invoker.toolchain_cpu_arch |
65 os = toolchain_os | 82 os = invoker.toolchain_os |
66 } | 83 } |
67 } | 84 } |
68 } | 85 } |
OLD | NEW |