summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:52:56 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:52:56 +0000
commita7af5ea88a6c5bdf87497cca6c20831e8c546751 (patch)
tree13c20d8ed1efbd96c42d7ce45c0f3f83370a6385 /examples
parentbce30c533a2b444db97533e3a9a567558120bd70 (diff)
downloadclang-a7af5ea88a6c5bdf87497cca6c20831e8c546751.tar.gz
clang-a7af5ea88a6c5bdf87497cca6c20831e8c546751.tar.bz2
clang-a7af5ea88a6c5bdf87497cca6c20831e8c546751.tar.xz
[analyzer] Refactoring: Move checkers into lib/GR/Checkers and their own library, libclangGRCheckers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/PrintFunctionNames/CMakeLists.txt1
-rw-r--r--examples/clang-interpreter/CMakeLists.txt1
-rw-r--r--examples/clang-interpreter/Makefile2
-rw-r--r--examples/wpa/CMakeLists.txt1
-rw-r--r--examples/wpa/Makefile2
5 files changed, 5 insertions, 2 deletions
diff --git a/examples/PrintFunctionNames/CMakeLists.txt b/examples/PrintFunctionNames/CMakeLists.txt
index ae5444207d..f16dd2b695 100644
--- a/examples/PrintFunctionNames/CMakeLists.txt
+++ b/examples/PrintFunctionNames/CMakeLists.txt
@@ -10,6 +10,7 @@ set( LLVM_USED_LIBS
clangCodeGen
clangParse
clangSema
+ clangGRCheckers
clangGRCore
clangAnalysis
clangIndex
diff --git a/examples/clang-interpreter/CMakeLists.txt b/examples/clang-interpreter/CMakeLists.txt
index 65786db18e..8bdea4ca22 100644
--- a/examples/clang-interpreter/CMakeLists.txt
+++ b/examples/clang-interpreter/CMakeLists.txt
@@ -6,6 +6,7 @@ set(LLVM_USED_LIBS
clangDriver
clangCodeGen
clangSema
+ clangGRCheckers
clangGRCore
clangIndex
clangAnalysis
diff --git a/examples/clang-interpreter/Makefile b/examples/clang-interpreter/Makefile
index 9b7662461e..6a690b0bf8 100644
--- a/examples/clang-interpreter/Makefile
+++ b/examples/clang-interpreter/Makefile
@@ -18,7 +18,7 @@ TOOL_NO_EXPORTS = 1
LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
selectiondag asmparser
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
- clangSema.a clangGRCore.a clangAnalysis.a clangRewrite.a \
+ clangSema.a clangGRCheckers.a clangGRCore.a clangAnalysis.a clangRewrite.a \
clangAST.a clangParse.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/Makefile
diff --git a/examples/wpa/CMakeLists.txt b/examples/wpa/CMakeLists.txt
index 9dbc04473d..94719b2993 100644
--- a/examples/wpa/CMakeLists.txt
+++ b/examples/wpa/CMakeLists.txt
@@ -7,6 +7,7 @@ set(LLVM_USED_LIBS
clangSema
clangAnalysis
clangSerialization
+ clangGRCheckers
clangGRCore
clangRewrite
clangAST
diff --git a/examples/wpa/Makefile b/examples/wpa/Makefile
index 9e875f31f5..f04fcb7e2d 100644
--- a/examples/wpa/Makefile
+++ b/examples/wpa/Makefile
@@ -16,7 +16,7 @@ NO_INSTALL = 1
TOOL_NO_EXPORTS = 1
LINK_COMPONENTS := asmparser bitreader mc core
-USEDLIBS = clangGRCore.a clangIndex.a clangFrontend.a clangDriver.a \
+USEDLIBS = clangGRCheckers.a clangGRCore.a clangIndex.a clangFrontend.a clangDriver.a \
clangSema.a clangAnalysis.a clangSerialization.a \
clangAST.a clangParse.a clangLex.a clangBasic.a