[libcxx-commits] [PATCH] D88449: [libcxx] Don't pass -s to libtool

Petr Hosek via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Sep 28 14:50:32 PDT 2020


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2d657d1bd7f1: [libcxx] Don't pass -s to libtool (authored by phosek).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D88449/new/

https://reviews.llvm.org/D88449

Files:
  libcxx/utils/merge_archives.py


Index: libcxx/utils/merge_archives.py
===================================================================
--- libcxx/utils/merge_archives.py
+++ libcxx/utils/merge_archives.py
@@ -143,7 +143,7 @@
 
     if args.use_libtool:
         files = [f for f in files if not f.startswith('__.SYMDEF')]
-        execute_command_verbose([libtool_exe, '-static', '-o', args.output, '-s'] + files,
+        execute_command_verbose([libtool_exe, '-static', '-o', args.output] + files,
                                 cwd=temp_directory_root, verbose=args.verbose)
     else:
         execute_command_verbose([ar_exe, 'rcs', args.output] + files,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88449.294812.patch
Type: text/x-patch
Size: 633 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200928/fc7b39cd/attachment-0001.bin>


More information about the libcxx-commits mailing list