[PATCH] D87418: [LLD] Allow configuring default ld.lld backend
Mateusz MikuĊa via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 11 03:54:29 PDT 2020
mati865 updated this revision to Diff 291175.
mati865 added a comment.
Updated the diff.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D87418/new/
https://reviews.llvm.org/D87418
Files:
lld/CMakeLists.txt
lld/tools/lld/lld.cpp
Index: lld/tools/lld/lld.cpp
===================================================================
--- lld/tools/lld/lld.cpp
+++ lld/tools/lld/lld.cpp
@@ -92,7 +92,12 @@
continue;
return isPETargetName(*(it + 1));
}
+
+#ifdef LLD_DEFAULT_LD_LLD_IS_MINGW
+ return true;
+#else
return false;
+#endif
}
static Flavor parseProgname(StringRef progname) {
Index: lld/CMakeLists.txt
===================================================================
--- lld/CMakeLists.txt
+++ lld/CMakeLists.txt
@@ -193,6 +193,12 @@
option(LLD_BUILD_TOOLS
"Build the lld tools. If OFF, just generate build targets." ON)
+option(LLD_DEFAULT_LD_LLD_IS_MINGW
+ "Use MinGW as the default backend for ld.lld. If OFF, ELF will be used." OFF)
+if (LLD_DEFAULT_LD_LLD_IS_MINGW)
+ add_definitions("-DLLD_DEFAULT_LD_LLD_IS_MINGW=1")
+endif()
+
if (MSVC)
add_definitions(-wd4530) # Suppress 'warning C4530: C++ exception handler used, but unwind semantics are not enabled.'
add_definitions(-wd4062) # Suppress 'warning C4062: enumerator X in switch of enum Y is not handled' from system header.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87418.291175.patch
Type: text/x-patch
Size: 1100 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200911/f5afbb93/attachment.bin>
More information about the llvm-commits
mailing list