[PATCH] D87521: [MinGW][llvm-config] Use unversioned library name
Mateusz MikuĊa via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 11 13:16:02 PDT 2020
mati865 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";
----------------
mstorsjo wrote:
> Shouldn't this be `isWindowsGNUEnvironment()`?
Sorry, I did not get along with my editor when making last second changes.
I'll update diff later when builds finish.
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