diff options
author | Martin Storsjo <martin@martin.st> | 2017-10-23 09:08:28 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-10-23 09:08:28 +0000 |
commit | 32fefef7fc8c89738fc5589e48f9935d56b0b590 (patch) | |
tree | 3d24dc08e2691854975b89f72152ebb8001bfcd6 | |
parent | ddb094ad367d0ab180ccebd27d86c940d7c250f7 (diff) | |
download | bcm5719-llvm-32fefef7fc8c89738fc5589e48f9935d56b0b590.tar.gz bcm5719-llvm-32fefef7fc8c89738fc5589e48f9935d56b0b590.zip |
[MinGW] Omit libc++/libc++abi/libunwind from autoexporting
Differential Revision: https://reviews.llvm.org/D39167
llvm-svn: 316318
-rw-r--r-- | lld/COFF/MinGW.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lld/COFF/MinGW.cpp b/lld/COFF/MinGW.cpp index 6943561b097..1337f131e4c 100644 --- a/lld/COFF/MinGW.cpp +++ b/lld/COFF/MinGW.cpp @@ -66,6 +66,9 @@ AutoExporter::AutoExporter() { "libclang_rt.builtins-arm", "libclang_rt.builtins-i386", "libclang_rt.builtins-x86_64", + "libc++", + "libc++abi", + "libunwind", }; ExcludeObjects = { "crt0.o", |