We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376bcff commit 02af89eCopy full SHA for 02af89e
components/cronet/tools/hide_symbols.py
@@ -60,14 +60,15 @@ def main():
60
61
if options.developer_dir:
62
os.environ['DEVELOPER_DIR'] = options.developer_dir
63
- developer_dir = options.developer_dir
+ developer_dir = options.developer_dir + '/Contents/Developer'
64
else:
65
developer_dir = subprocess.check_output(
66
['xcode-select', '--print-path']).strip()
67
68
xctoolchain_libs = glob.glob(developer_dir
69
+ '/Toolchains/XcodeDefault.xctoolchain/usr/lib'
70
+ '/clang/*/lib/darwin/*.ios.a')
71
+ print "Adding xctoolchain_libs: ", xctoolchain_libs
72
73
# ld -r concatenates multiple .o files and .a files into a single .o file,
74
# while "hiding" symbols not marked as visible.
0 commit comments