diff options
Diffstat (limited to 'utils/not')
-rw-r--r-- | utils/not/CMakeLists.txt | 6 | ||||
-rw-r--r-- | utils/not/Makefile | 4 |
2 files changed, 2 insertions, 8 deletions
diff --git a/utils/not/CMakeLists.txt b/utils/not/CMakeLists.txt index 5ff14d6..4a92348 100644 --- a/utils/not/CMakeLists.txt +++ b/utils/not/CMakeLists.txt @@ -3,9 +3,3 @@ add_llvm_utility(not ) target_link_libraries(not LLVMSupport) -if( MINGW ) - target_link_libraries(not imagehlp psapi shell32) -endif( MINGW ) -if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD ) - target_link_libraries(not pthread) -endif() diff --git a/utils/not/Makefile b/utils/not/Makefile index f37f166..26b7450 100644 --- a/utils/not/Makefile +++ b/utils/not/Makefile @@ -14,8 +14,8 @@ USEDLIBS = LLVMSupport.a # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 +# FIXME: Don't install this utility +#NO_INSTALL = 1 include $(LEVEL)/Makefile.common |