mingw gcc lld llvm linker qmake cmake
Source
- with QMake ^dfbeda
- add
QMAKE_LFLAGS*=-fuse-ld=lldas additional qmake arguments or anywhere in a.proor.prifile
- add
- with CMake ^85c9b4
- add
-DCMAKE_CXX_FLAGS="-fuse-ld=lld"to the command line - add
list(APPEND CMAKE_CXX_FLAGS "-fuse-ld=lld")in aCMakeLists.txtfile
- add