[PATCH] D23420: libcxx: Fix libcxx test on aarch64 with libunwind
Adhemerval Zanella via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 12 10:02:02 PDT 2016
zatrazz updated this revision to Diff 67850.
zatrazz added a comment.
I think patch should be safe now.
https://reviews.llvm.org/D23420
Files:
test/libcxx/test/target_info.py
Index: test/libcxx/test/target_info.py
===================================================================
--- test/libcxx/test/target_info.py
+++ test/libcxx/test/target_info.py
@@ -180,7 +180,8 @@
if llvm_unwinder:
flags += ['-lunwind', '-ldl']
else:
- flags += ['-lgcc_s', '-lgcc']
+ flags += ['-lgcc_s']
+ flags += ['-lgcc']
use_libatomic = self.full_config.get_lit_bool('use_libatomic', False)
if use_libatomic:
flags += ['-latomic']
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23420.67850.patch
Type: text/x-patch
Size: 530 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160812/27522935/attachment.bin>
More information about the cfe-commits
mailing list