diff options
author | John Brawn <john.brawn@arm.com> | 2016-07-28 17:17:22 +0000 |
---|---|---|
committer | John Brawn <john.brawn@arm.com> | 2016-07-28 17:17:22 +0000 |
commit | 40e6fbb0af9fcc7539f6dbf747c3ff2d0cf5a5c6 (patch) | |
tree | 60a7ef3d53ed34ecc266deeecd0c43b1c9c87960 /examples | |
parent | 394ca50fa91a04fb3df27b9352b10ba23ad5d003 (diff) | |
download | clang-40e6fbb0af9fcc7539f6dbf747c3ff2d0cf5a5c6.tar.gz |
Revert r276973 "Adjust Registry interface to not require plugins to export a registry"
Buildbot failures when building with clang -Werror. Reverting while I try to
figure this out.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r-- | examples/AnnotateFunctions/CMakeLists.txt | 2 | ||||
-rw-r--r-- | examples/PrintFunctionNames/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/AnnotateFunctions/CMakeLists.txt b/examples/AnnotateFunctions/CMakeLists.txt index 5684abf238..cf564d527d 100644 --- a/examples/AnnotateFunctions/CMakeLists.txt +++ b/examples/AnnotateFunctions/CMakeLists.txt @@ -1,4 +1,4 @@ -add_llvm_loadable_module(AnnotateFunctions AnnotateFunctions.cpp PLUGIN_TOOL clang) +add_llvm_loadable_module(AnnotateFunctions AnnotateFunctions.cpp) if(LLVM_ENABLE_PLUGINS AND (WIN32 OR CYGWIN)) target_link_libraries(AnnotateFunctions PRIVATE diff --git a/examples/PrintFunctionNames/CMakeLists.txt b/examples/PrintFunctionNames/CMakeLists.txt index f5f818866c..5a00d5036f 100644 --- a/examples/PrintFunctionNames/CMakeLists.txt +++ b/examples/PrintFunctionNames/CMakeLists.txt @@ -9,7 +9,7 @@ if( NOT MSVC ) # MSVC mangles symbols differently, and endif() endif() -add_llvm_loadable_module(PrintFunctionNames PrintFunctionNames.cpp PLUGIN_TOOL clang) +add_llvm_loadable_module(PrintFunctionNames PrintFunctionNames.cpp) if(LLVM_ENABLE_PLUGINS AND (WIN32 OR CYGWIN)) target_link_libraries(PrintFunctionNames PRIVATE |