aboutsummaryrefslogtreecommitdiff
path: root/cmake/Findlld.cmake
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-05-23 00:42:53 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-06-03 12:47:23 -0400
commite64f0971fc788cefb348e9516cd3b284df7ea0df (patch)
treefcd343acc56d078d753c936f57a1bfe762734563 /cmake/Findlld.cmake
parent1e301b03a9110b3cd8a29530ad9cbc85b403a902 (diff)
downloadzig-e64f0971fc788cefb348e9516cd3b284df7ea0df.tar.gz
zig-e64f0971fc788cefb348e9516cd3b284df7ea0df.zip
add appveyor integration testing
Diffstat (limited to 'cmake/Findlld.cmake')
-rw-r--r--cmake/Findlld.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/Findlld.cmake b/cmake/Findlld.cmake
index c4bdd89628..d20ffed6f2 100644
--- a/cmake/Findlld.cmake
+++ b/cmake/Findlld.cmake
@@ -20,7 +20,9 @@ else()
find_library(LLD_${_prettylibname_}_LIB NAMES ${_libname_}
PATHS
/usr/lib/llvm-4.0/lib
- /mingw64/lib)
+ /mingw64/lib
+ /c/msys64/mingw64/lib
+ c:/msys64/mingw64/lib)
if(LLD_${_prettylibname_}_LIB)
set(LLD_LIBRARIES ${LLD_LIBRARIES} ${LLD_${_prettylibname_}_LIB})
endif()