]> granicus.if.org Git - clang/commitdiff
With CLANG_ENABLE_STATIC_ANALYZER=0, link clang properly and skip clang-check.
authorJordan Rose <jordan_rose@apple.com>
Wed, 3 Jul 2013 16:20:29 +0000 (16:20 +0000)
committerJordan Rose <jordan_rose@apple.com>
Wed, 3 Jul 2013 16:20:29 +0000 (16:20 +0000)
Previously, the CMake build still tried to link clang against the static
analyzer libraries, even if CLANG_ENABLE_STATIC_ANALYZER was off.
Furthermore, clang-check depends on the analyzer, so it should be disabled
(in both CMake and configure builds).

In theory, clang-check could be made to conditionally include analyzer
support (like clang itself), but for now this at least gets a CMake ALL_BUILD
working.

Patch by Stephen Kelly, modified by me.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185548 91177308-0d34-0410-b5e6-96231b3b80d8

lib/FrontendTool/CMakeLists.txt
tools/CMakeLists.txt
tools/Makefile

index 176511b0e4c8280eb7b623e66d6944e1386d10ec..3e6aba441ed1df2ae5e216d2c077a80fe4887a9f 100644 (file)
@@ -14,8 +14,13 @@ target_link_libraries(clangFrontendTool
   clangRewriteCore
   clangRewriteFrontend
   clangCodeGen
-  clangStaticAnalyzerFrontend
-  clangStaticAnalyzerCheckers
-  clangStaticAnalyzerCore
   clangARCMigrate
   )
+
+if(CLANG_ENABLE_STATIC_ANALYZER)
+  target_link_libraries(clangFrontendTool
+    clangStaticAnalyzerFrontend
+    clangStaticAnalyzerCheckers
+    clangStaticAnalyzerCore
+    )
+endif()
index eb5e366cfd717be9a6ceff160cb04c413bf6057b..13f4666297a971d8cca0b6f5609fc1111a0e4ee1 100644 (file)
@@ -4,7 +4,9 @@ add_subdirectory(arcmt-test)
 add_subdirectory(c-arcmt-test)
 add_subdirectory(diagtool)
 add_subdirectory(driver)
-add_subdirectory(clang-check)
+if(CLANG_ENABLE_STATIC_ANALYZER)
+  add_subdirectory(clang-check)
+endif()
 add_subdirectory(clang-format)
 
 # We support checking out the clang-tools-extra repository into the 'extra'
index c8bc583c2fd39e5fc03911ae733963d7586a9706..902e6736d7d70d450500394db29125344ffae9f8 100644 (file)
@@ -12,7 +12,11 @@ CLANG_LEVEL := ..
 include $(CLANG_LEVEL)/../../Makefile.config
 
 DIRS := libclang c-index-test arcmt-test c-arcmt-test
-PARALLEL_DIRS := driver diagtool clang-check clang-format
+PARALLEL_DIRS := driver diagtool clang-format
+
+ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
+  PARALLEL_DIRS += clang-check
+endif
 
 # Recurse into the extra repository of tools if present.
 OPTIONAL_PARALLEL_DIRS := extra