mirror of
				https://git.proxmox.com/git/llvm-toolchain
				synced 2025-11-04 09:15:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
Origin: https://reviews.llvm.org/D67877
 | 
						|
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941082
 | 
						|
 | 
						|
Index: llvm-toolchain-snapshot_11~++20200409051253+d08105482e1/clang/lib/Analysis/plugins/CMakeLists.txt
 | 
						|
===================================================================
 | 
						|
--- llvm-toolchain-snapshot_11~++20200409051253+d08105482e1.orig/clang/lib/Analysis/plugins/CMakeLists.txt
 | 
						|
+++ llvm-toolchain-snapshot_11~++20200409051253+d08105482e1/clang/lib/Analysis/plugins/CMakeLists.txt
 | 
						|
@@ -1,4 +1,4 @@
 | 
						|
-if(CLANG_ENABLE_STATIC_ANALYZER AND LLVM_ENABLE_PLUGINS)
 | 
						|
+if(CLANG_ENABLE_STATIC_ANALYZER AND LLVM_ENABLE_PLUGINS AND CLANG_BUILD_EXAMPLES)
 | 
						|
   add_subdirectory(SampleAnalyzer)
 | 
						|
   add_subdirectory(CheckerDependencyHandling)
 | 
						|
   add_subdirectory(CheckerOptionHandling)
 | 
						|
Index: llvm-toolchain-snapshot_11~++20200409051253+d08105482e1/clang/test/CMakeLists.txt
 | 
						|
===================================================================
 | 
						|
--- llvm-toolchain-snapshot_11~++20200409051253+d08105482e1.orig/clang/test/CMakeLists.txt
 | 
						|
+++ llvm-toolchain-snapshot_11~++20200409051253+d08105482e1/clang/test/CMakeLists.txt
 | 
						|
@@ -138,14 +138,12 @@ if( NOT CLANG_BUILT_STANDALONE )
 | 
						|
   endif()
 | 
						|
 endif()
 | 
						|
 
 | 
						|
-if (CLANG_ENABLE_STATIC_ANALYZER)
 | 
						|
-  if (LLVM_ENABLE_PLUGINS)
 | 
						|
-    list(APPEND CLANG_TEST_DEPS
 | 
						|
-      SampleAnalyzerPlugin
 | 
						|
-      CheckerDependencyHandlingAnalyzerPlugin
 | 
						|
-      CheckerOptionHandlingAnalyzerPlugin
 | 
						|
-      )
 | 
						|
-  endif()
 | 
						|
+if (CLANG_ENABLE_STATIC_ANALYZER AND CLANG_BUILD_EXAMPLES AND LLVM_ENABLE_PLUGINS)
 | 
						|
+  list(APPEND CLANG_TEST_DEPS
 | 
						|
+    SampleAnalyzerPlugin
 | 
						|
+    CheckerDependencyHandlingAnalyzerPlugin
 | 
						|
+    CheckerOptionHandlingAnalyzerPlugin
 | 
						|
+    )
 | 
						|
 endif()
 | 
						|
 
 | 
						|
 # Copy gen_ast_dump_json_test.py to the clang build dir. This allows invoking
 |