forked from OSchip/llvm-project
Attempted CMake build fixes for r72060; this is untested, so please tell
me if there are any issues. llvm-svn: 72063
This commit is contained in:
parent
2b6d281e11
commit
351fa4b1b2
|
@ -1,8 +1,12 @@
|
|||
set(LLVM_NO_RTTI 1)
|
||||
|
||||
add_clang_library(clangFrontend
|
||||
ASTConsumers.cpp
|
||||
Backend.cpp
|
||||
FixItRewriter.cpp
|
||||
GeneratePCH.cpp
|
||||
HTMLDiagnostics.cpp
|
||||
HTMLPrint.cpp
|
||||
InitHeaderSearch.cpp
|
||||
InitPreprocessor.cpp
|
||||
TextDiagnosticBuffer.cpp
|
||||
|
@ -14,5 +18,7 @@ add_clang_library(clangFrontend
|
|||
PCHWriterDecl.cpp
|
||||
PCHWriterStmt.cpp
|
||||
PlistDiagnostics.cpp
|
||||
RewriteBlocks.cpp
|
||||
RewriteObjC.cpp
|
||||
ManagerRegistry.cpp
|
||||
)
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
set(LLVM_NO_RTTI 1)
|
||||
|
||||
set( LLVM_USED_LIBS
|
||||
clangFrontend
|
||||
clangCodeGen
|
||||
clangAnalysis
|
||||
clangRewrite
|
||||
clangSema
|
||||
clangFrontend
|
||||
clangAST
|
||||
clangParse
|
||||
clangLex
|
||||
|
@ -23,19 +23,13 @@ set( LLVM_LINK_COMPONENTS
|
|||
|
||||
add_clang_executable(clang-cc
|
||||
AnalysisConsumer.cpp
|
||||
ASTConsumers.cpp
|
||||
Backend.cpp
|
||||
CacheTokens.cpp
|
||||
clang-cc.cpp
|
||||
DependencyFile.cpp
|
||||
DiagChecker.cpp
|
||||
GeneratePCH.cpp
|
||||
HTMLPrint.cpp
|
||||
PrintParserCallbacks.cpp
|
||||
PrintPreprocessedOutput.cpp
|
||||
RewriteBlocks.cpp
|
||||
RewriteMacros.cpp
|
||||
RewriteObjC.cpp
|
||||
RewriteTest.cpp
|
||||
Warnings.cpp
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue