Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / build / toolchain / gcc_toolchain.gni
bloba9f73f7be6da22da9f69bdcda7ba22455f28ddab
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
3 # found in the LICENSE file.
5 import("//build/config/sanitizers/sanitizers.gni")
6 import("//build/toolchain/toolchain.gni")
8 # This value will be inherited in the toolchain below.
9 concurrent_links = exec_script("get_concurrent_links.py", [], "value")
11 # This template defines a toolchain for something that works like gcc
12 # (including clang).
14 # It requires the following variables specifying the executables to run:
15 #  - cc
16 #  - cxx
17 #  - ar
18 #  - ld
19 # and the following which is used in the toolchain_args
20 #  - toolchain_cpu  (What "current_cpu" should be set to when invoking a
21 #                    build using this toolchain.)
22 #  - toolchain_os  (What "current_os" should be set to when invoking a
23 #                   build using this toolchain.)
25 # Optional parameters:
26 #  - libs_section_prefix
27 #  - libs_section_postfix
28 #      The contents of these strings, if specified, will be placed around
29 #      the libs section of the linker line. It allows one to inject libraries
30 #      at the beginning and end for all targets in a toolchain.
31 #  - solink_libs_section_prefix
32 #  - solink_libs_section_postfix
33 #      Same as libs_section_{pre,post}fix except used for solink instead of link.
34 #  - link_outputs
35 #      The content of this array, if specified, will be added to the list of
36 #      outputs from the link command. This can be useful in conjunction with
37 #      the post_link parameter.
38 #  - post_link
39 #      The content of this string, if specified, will be run as a separate
40 #      command following the the link command.
41 #  - deps
42 #      Just forwarded to the toolchain definition.
43 #  - executable_extension
44 #      If this string is specified it will be used for the file extension
45 #      for an executable, rather than using no extension; targets will
46 #      still be able to override the extension using the output_extension
47 #      variable.
48 #  - is_clang
49 #      Whether to use clang instead of gcc.
50 #  - is_component_build
51 #      Whether to forcibly enable or disable component builds for this
52 #      toolchain; if not specified, the toolchain will inherit the
53 #      default setting.
54 #  - rebuild_define
55 #      The contents of this string, if specified, will be passed as a #define
56 #      to the toolchain. It can be used to force recompiles whenever a
57 #      toolchain is updated.
58 #  - shlib_extension
59 #      If this string is specified it will be used for the file extension
60 #      for a shared library, rather than default value specified in
61 #      toolchain.gni
62 #  - strip
63 #      Location of the strip executable. When specified, strip will be run on
64 #      all shared libraries and executables as they are built. The pre-stripped
65 #      artifacts will be put in lib.stripped/ and exe.stripped/.
66 template("gcc_toolchain") {
67   toolchain(target_name) {
68     assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value")
69     assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value")
70     assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value")
71     assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value")
72     assert(defined(invoker.toolchain_cpu),
73            "gcc_toolchain() must specify a \"toolchain_cpu\"")
74     assert(defined(invoker.toolchain_os),
75            "gcc_toolchain() must specify a \"toolchain_os\"")
77     # This define changes when the toolchain changes, forcing a rebuild.
78     # Nothing should ever use this define.
79     if (defined(invoker.rebuild_define)) {
80       rebuild_string = "-D" + invoker.rebuild_define + " "
81     } else {
82       rebuild_string = ""
83     }
85     # We can't do string interpolation ($ in strings) on things with dots in
86     # them. To allow us to use $cc below, for example, we create copies of
87     # these values in our scope.
88     cc = invoker.cc
89     cxx = invoker.cxx
90     ar = invoker.ar
91     ld = invoker.ld
92     if (defined(invoker.readelf)) {
93       readelf = invoker.readelf
94     } else {
95       readelf = "readelf"
96     }
97     if (defined(invoker.nm)) {
98       nm = invoker.nm
99     } else {
100       nm = "nm"
101     }
103     if (defined(invoker.shlib_extension)) {
104       default_shlib_extension = invoker.shlib_extension
105     } else {
106       default_shlib_extension = shlib_extension
107     }
109     if (defined(invoker.executable_extension)) {
110       default_executable_extension = invoker.executable_extension
111     } else {
112       default_executable_extension = ""
113     }
115     # Bring these into our scope for string interpolation with default values.
116     if (defined(invoker.libs_section_prefix)) {
117       libs_section_prefix = invoker.libs_section_prefix
118     } else {
119       libs_section_prefix = ""
120     }
122     if (defined(invoker.libs_section_postfix)) {
123       libs_section_postfix = invoker.libs_section_postfix
124     } else {
125       libs_section_postfix = ""
126     }
128     if (defined(invoker.solink_libs_section_prefix)) {
129       solink_libs_section_prefix = invoker.solink_libs_section_prefix
130     } else {
131       solink_libs_section_prefix = ""
132     }
134     if (defined(invoker.solink_libs_section_postfix)) {
135       solink_libs_section_postfix = invoker.solink_libs_section_postfix
136     } else {
137       solink_libs_section_postfix = ""
138     }
140     # These library switches can apply to all tools below.
141     lib_switch = "-l"
142     lib_dir_switch = "-L"
144     tool("cc") {
145       depfile = "{{output}}.d"
146       command = "$cc -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} -c {{source}} -o {{output}}"
147       depsformat = "gcc"
148       description = "CC {{output}}"
149       outputs = [
150         "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
151       ]
152     }
154     tool("cxx") {
155       depfile = "{{output}}.d"
156       command = "$cxx -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} -c {{source}} -o {{output}}"
157       depsformat = "gcc"
158       description = "CXX {{output}}"
159       outputs = [
160         "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
161       ]
162     }
164     tool("asm") {
165       # For GCC we can just use the C compiler to compile assembly.
166       depfile = "{{output}}.d"
167       command = "$cc -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} -c {{source}} -o {{output}}"
168       depsformat = "gcc"
169       description = "ASM {{output}}"
170       outputs = [
171         "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
172       ]
173     }
175     tool("alink") {
176       rspfile = "{{output}}.rsp"
177       arflags = ""
178       if (is_cfi && invoker.toolchain_os != "nacl") {
179         gold_plugin_path = rebase_path(
180                 "//third_party/llvm-build/Release+Asserts/lib/LLVMgold.so",
181                 root_build_dir)
182         arflags = "--plugin $gold_plugin_path"
183       }
184       command = "rm -f {{output}} && $ar rcs $arflags {{output}} @$rspfile"
185       description = "AR {{output}}"
186       rspfile_content = "{{inputs}}"
187       outputs = [
188         "{{target_out_dir}}/{{target_output_name}}{{output_extension}}",
189       ]
190       default_output_extension = ".a"
191       output_prefix = "lib"
192     }
194     tool("solink") {
195       soname = "{{target_output_name}}{{output_extension}}"  # e.g. "libfoo.so".
196       sofile = "{{root_out_dir}}/$soname"  # Possibly including toolchain dir.
197       if (shlib_subdir != ".") {
198         sofile = "{{root_out_dir}}/$shlib_subdir/$soname"
199       }
200       rspfile = sofile + ".rsp"
202       unstripped_sofile = sofile
203       if (defined(invoker.strip)) {
204         unstripped_sofile = "{{root_out_dir}}/lib.unstripped/$soname"
205       }
207       # These variables are not built into GN but are helpers that implement
208       # (1) linking to produce a .so, (2) extracting the symbols from that file
209       # to a temporary file, (3) if the temporary file has differences from the
210       # existing .TOC file, overwrite it, otherwise, don't change it.
211       tocfile = sofile + ".TOC"
212       temporary_tocname = sofile + ".tmp"
214       link_command = "$ld -shared {{ldflags}} -o $unstripped_sofile -Wl,-soname=$soname @$rspfile"
215       assert(defined(readelf), "to solink you must have a readelf")
216       assert(defined(nm), "to solink you must have an nm")
217       toc_command = "{ $readelf -d $unstripped_sofile | grep SONAME ; $nm -gD -f p $unstripped_sofile | cut -f1-2 -d' '; } > $temporary_tocname"
218       replace_command = "if ! cmp -s $temporary_tocname $tocfile; then mv $temporary_tocname $tocfile; fi"
220       command = "$link_command && $toc_command && $replace_command"
221       if (defined(invoker.strip)) {
222         strip_command =
223             "${invoker.strip} --strip-unneeded -o $sofile $unstripped_sofile"
224         command += " && " + strip_command
225       }
226       rspfile_content = "-Wl,--whole-archive {{inputs}} {{solibs}} -Wl,--no-whole-archive $solink_libs_section_prefix {{libs}} $solink_libs_section_postfix"
228       description = "SOLINK $sofile"
230       # Use this for {{output_extension}} expansions unless a target manually
231       # overrides it (in which case {{output_extension}} will be what the target
232       # specifies).
233       default_output_extension = default_shlib_extension
235       output_prefix = "lib"
237       # Since the above commands only updates the .TOC file when it changes, ask
238       # Ninja to check if the timestamp actually changed to know if downstream
239       # dependencies should be recompiled.
240       restat = true
242       # Tell GN about the output files. It will link to the sofile but use the
243       # tocfile for dependency management.
244       outputs = [
245         sofile,
246         tocfile,
247       ]
248       if (sofile != unstripped_sofile) {
249         outputs += [ unstripped_sofile ]
250       }
251       link_output = sofile
252       depend_output = tocfile
253     }
255     tool("link") {
256       exename = "{{target_output_name}}{{output_extension}}"
257       outfile = "{{root_out_dir}}/$exename"
258       rspfile = "$outfile.rsp"
259       unstripped_outfile = outfile
261       # Use this for {{output_extension}} expansions unless a target manually
262       # overrides it (in which case {{output_extension}} will be what the target
263       # specifies).
264       default_output_extension = default_executable_extension
266       if (defined(invoker.strip)) {
267         unstripped_outfile = "{{root_out_dir}}/exe.unstripped/$exename"
268       }
270       command = "$ld {{ldflags}} -o $unstripped_outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group $libs_section_prefix {{libs}} $libs_section_postfix"
271       if (defined(invoker.strip)) {
272         strip_command =
273             "${invoker.strip} --strip-unneeded -o $outfile $unstripped_outfile"
274         command += " && " + strip_command
275       }
276       if (defined(invoker.postlink)) {
277         command += " && " + invoker.postlink
278       }
279       description = "LINK $outfile"
280       rspfile_content = "{{inputs}}"
281       outputs = [
282         outfile,
283       ]
284       if (outfile != unstripped_outfile) {
285         outputs += [ unstripped_outfile ]
286       }
287       if (defined(invoker.link_outputs)) {
288         outputs += invoker.link_outputs
289       }
290     }
292     tool("stamp") {
293       command = "touch {{output}}"
294       description = "STAMP {{output}}"
295     }
297     tool("copy") {
298       command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}} {{output}})"
299       description = "COPY {{source}} {{output}}"
300     }
302     # When invoking this toolchain not as the default one, these args will be
303     # passed to the build. They are ignored when this is the default toolchain.
304     toolchain_args() {
305       current_cpu = invoker.toolchain_cpu
306       current_os = invoker.toolchain_os
308       # These values need to be passed through unchanged.
309       target_os = target_os
310       target_cpu = target_cpu
312       if (defined(invoker.is_clang)) {
313         is_clang = invoker.is_clang
314       }
315       if (defined(invoker.is_component_build)) {
316         is_component_build = invoker.is_component_build
317       }
318     }
320     if (defined(invoker.deps)) {
321       deps = invoker.deps
322     }
323   }