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

Side by Side Diff: components/cronet/tools/hide_symbols.py

Issue 2807283002: [Cronet] Build static libcronet.a for iOS with complete dependencies. (Closed)
Patch Set: Disable cronet_consumer_static target for fat builds. Created 3 years, 6 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 #!/usr/bin/env python
2
3 # Copyright 2017 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # Create a static library which exposes only symbols which are explicitly marked
8 # as visible e.g., by __attribute__((visibility("default"))).
9 #
10 # See BUILD.gn in this directory for usage example.
11 #
12 # This way, we can reduce risk of symbol conflict when linking it into apps
13 # by exposing internal symbols, especially in third-party libraries.
14
15 import optparse
16 import os
17 import subprocess
18
19
20 # Mapping from GN's target_cpu attribute to ld's -arch parameter.
21 # Taken from the definition of config("compiler") in:
22 # //build/config/mac/BUILD.gn
23 GN_CPU_TO_LD_ARCH = {
24 'x64': 'x86_64',
25 'x86': 'i386',
26 'armv7': 'armv7',
27 'arm': 'armv7',
28 'arm64': 'arm64',
29 }
30
31
32 def main():
33 parser = optparse.OptionParser()
34 parser.add_option(
35 '--input_libs',
36 help='Comma-separated paths to input .a files which contain symbols '
37 'which must be always linked.')
38 parser.add_option(
39 '--deps_lib',
40 help='The path to a complete static library (.a file) which contains all '
41 'dependencies of --input_libs. .o files in this library are also '
42 'added to the output library, but only if they are referred from '
43 '--input_libs.')
44 parser.add_option(
45 '--output_obj',
46 help='Outputs the generated .o file here. This is an intermediate file.')
47 parser.add_option(
48 '--output_lib',
49 help='Outputs the generated .a file here.')
50 parser.add_option(
51 '--current_cpu',
52 help='The current processor architecture in the format of the target_cpu '
53 'attribute in GN.')
54 (options, args) = parser.parse_args()
55 assert not args
56
57 # ld -r concatenates multiple .o files and .a files into a single .o file,
58 # while "hiding" symbols not marked as visible.
59 command = [
60 'xcrun', 'ld',
61 '-arch', GN_CPU_TO_LD_ARCH[options.current_cpu],
62 '-r',
63 ]
64 for input_lib in options.input_libs.split(','):
65 # By default, ld only pulls .o files out of a static library if needed to
66 # resolve some symbol reference. We apply -force_load option to input_lib
67 # (but not to deps_lib) to force pulling all .o files.
68 command += ['-force_load', input_lib]
69 command += [
70 options.deps_lib,
71 '-o', options.output_obj
72 ]
73 try:
74 subprocess.check_call(command)
75 except subprocess.CalledProcessError:
76 # Work around LD failure for x86 Debug buiilds when it fails with error:
77 # ld: scattered reloc r_address too large for architecture i386
78 if options.current_cpu == "x86":
79 # Combmine input lib with dependencies into output lib.
80 command = [
81 'xcrun', 'libtool', '-static', '-no_warning_for_no_symbols',
82 '-o', options.output_lib,
83 options.input_libs, options.deps_lib,
84 ]
85 subprocess.check_call(command)
86 return
87
88 if os.path.exists(options.output_lib):
89 os.remove(options.output_lib)
90
91 # Creates a .a file which contains a single .o file.
92 command = [
93 'xcrun', 'ar', '-r',
94 options.output_lib,
95 options.output_obj,
96 ]
97 subprocess.check_call(command)
98
99
100 if __name__ == "__main__":
101 main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698