]> granicus.if.org Git - llvm/commitdiff
Merging r325894:
authorHans Wennborg <hans@hanshq.net>
Fri, 23 Feb 2018 12:22:51 +0000 (12:22 +0000)
committerHans Wennborg <hans@hanshq.net>
Fri, 23 Feb 2018 12:22:51 +0000 (12:22 +0000)
------------------------------------------------------------------------
r325894 | hans | 2018-02-23 13:20:26 +0100 (Fri, 23 Feb 2018) | 1 line

llvm-config: Add advapi32 to --system-libs on Windows (PR36372)
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_60@325895 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/CMakeLists.txt
test/tools/llvm-config/system-libs.windows.test

index 5723f8fcf5bb317ca17645f4fb3ba36a9d55510e..d968688911eb99e45ed28f4643d9b7c743adbeab 100644 (file)
@@ -4,7 +4,8 @@ if ( LLVM_ENABLE_ZLIB AND HAVE_LIBZ )
 endif()
 if( MSVC OR MINGW )
   # libuuid required for FOLDERID_Profile usage in lib/Support/Windows/Path.inc.
-  set(system_libs ${system_libs} psapi shell32 ole32 uuid)
+  # advapi32 required for CryptAcquireContextW in lib/Support/Windows/Path.inc.
+  set(system_libs ${system_libs} psapi shell32 ole32 uuid advapi32)
 elseif( CMAKE_HOST_UNIX )
   if( HAVE_LIBRT )
     set(system_libs ${system_libs} rt)
index 2c6e03afa2d95f8df4777aa2e76bbb1b62ebdd2f..09970cf6899484c53c0b4c4e886497c52d43322a 100644 (file)
@@ -2,6 +2,6 @@ RUN: llvm-config --link-static --system-libs 2>&1 | FileCheck %s
 REQUIRES: static-libs
 REQUIRES: system-windows
 CHECK-NOT: -l
-CHECK: psapi.lib shell32.lib ole32.lib uuid.lib
+CHECK: psapi.lib shell32.lib ole32.lib uuid.lib advapi32.lib
 CHECK-NOT: error
 CHECK-NOT: warning