diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2015-10-24 19:27:28 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2015-10-24 19:27:28 +0000 |
commit | 57fa135b407fa9e26b7db326330dba3ac26af58f (patch) | |
tree | 858dcba2bac211948bff00e0eb8d89657ef2e29a /llvm/lib | |
parent | 74b6d3b96784fda7f72d597b9353590ac5c62bf0 (diff) | |
download | bcm5719-llvm-57fa135b407fa9e26b7db326330dba3ac26af58f.tar.gz bcm5719-llvm-57fa135b407fa9e26b7db326330dba3ac26af58f.zip |
Add libuuid to required system libraries list for mingw.
This list is produced by llvm-config --system-libs to be used
by external programs using the llvm libraries, such as creduce.
In r250501 llvm/Support/Windows/Path.inc started to use the constant
FOLDERID_Profile from libuuid.
llvm-svn: 251201
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Support/CMakeLists.txt b/llvm/lib/Support/CMakeLists.txt index badfd99b673..784e00e15b9 100644 --- a/llvm/lib/Support/CMakeLists.txt +++ b/llvm/lib/Support/CMakeLists.txt @@ -1,7 +1,8 @@ set(system_libs) if( NOT MSVC ) if( MINGW ) - set(system_libs ${system_libs} psapi shell32 ole32) + # libuuid required for FOLDERID_Profile usage in lib/Support/Windows/Path.inc. + set(system_libs ${system_libs} psapi shell32 ole32 uuid) elseif( CMAKE_HOST_UNIX ) if( HAVE_LIBRT ) set(system_libs ${system_libs} rt) |