diff options
author | Dan Gohman <gohman@apple.com> | 2010-10-29 22:36:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-10-29 22:36:50 +0000 |
commit | e836e5f17485bd884442d7188abeedf6e0b608ff (patch) | |
tree | a7699bb023f33903e958d931a517a00f810f9fc8 /utils/not | |
parent | db1da8ed42cbe50945acfaca514864723999150a (diff) | |
download | external_llvm-e836e5f17485bd884442d7188abeedf6e0b608ff.zip external_llvm-e836e5f17485bd884442d7188abeedf6e0b608ff.tar.gz external_llvm-e836e5f17485bd884442d7188abeedf6e0b608ff.tar.bz2 |
Apply a patch from Frits van Bommel to fix the CMake build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117731 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/not')
-rw-r--r-- | utils/not/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/not/CMakeLists.txt b/utils/not/CMakeLists.txt index 407c82e..522708d 100644 --- a/utils/not/CMakeLists.txt +++ b/utils/not/CMakeLists.txt @@ -2,7 +2,7 @@ add_executable(not not.cpp ) -target_link_libraries(not LLVMSystem) +target_link_libraries(not LLVMSupport LLVMSystem) if( MINGW ) target_link_libraries(not imagehlp psapi) endif( MINGW ) |