Skip to content

Commit 2d657d1

Browse files
committed
[libcxx] Don't pass -s to libtool
This flag is the default in libtool on Darwin, and it's not supported by llvm-libtool-darwin causing a build failure. Differential Revision: https://reviews.llvm.org/D88449
1 parent d092c91 commit 2d657d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/merge_archives.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def main():
143143

144144
if args.use_libtool:
145145
files = [f for f in files if not f.startswith('__.SYMDEF')]
146-
execute_command_verbose([libtool_exe, '-static', '-o', args.output, '-s'] + files,
146+
execute_command_verbose([libtool_exe, '-static', '-o', args.output] + files,
147147
cwd=temp_directory_root, verbose=args.verbose)
148148
else:
149149
execute_command_verbose([ar_exe, 'rcs', args.output] + files,

0 commit comments

Comments
 (0)