[PATCH] D87521: [MinGW][llvm-config] Use unversioned library name

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 11 12:09:51 PDT 2020


mstorsjo added inline comments.


================
Comment at: llvm/tools/llvm-config/llvm-config.cpp:382
     SharedExt = "dll";
-    SharedVersionedExt = LLVM_DYLIB_VERSION ".dll";
+    if (HostTriple.isWindowsGNUEnvironment)
+      SharedVersionedExt = ".dll";
----------------
Shouldn't this be `isWindowsGNUEnvironment()`?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D87521



More information about the llvm-commits mailing list