blob: cd60bb456c9d11da91f3ac8881cb90550c5a1302 [file] [log] [blame]
if (SWIFT_FORCE_OPTIMIZED_TYPECHECKER)
set(EXTRA_AST_FLAGS "FORCE_BUILD_OPTIMIZED")
endif()
if(SWIFT_BUILD_ONLY_SYNTAXPARSERLIB)
set(SWIFTAST_INTERFACE_LINK_LIBRARIES)
set(SWIFTAST_LLVM_COMPONENT_DEPENDS)
else()
set(SWIFTAST_INTERFACE_LINK_LIBRARIES
# Clang dependencies.
# FIXME: Clang should really export these in some reasonable manner.
clangCodeGen
clangIndex
clangFormat
clangToolingCore
clangFrontendTool
clangFrontend
clangDriver
clangSerialization
clangParse
clangSema
clangAnalysis
clangEdit
clangRewriteFrontend
clangRewrite
clangAST
clangLex
clangAPINotes
clangBasic
)
set(SWIFTAST_LLVM_COMPONENT_DEPENDS
bitreader bitwriter coroutines coverage irreader debuginfoDWARF
profiledata instrumentation object objcarcopts mc mcparser
bitreader bitwriter lto ipo option core support ${LLVM_TARGETS_TO_BUILD}
)
endif()
add_swift_host_library(swiftAST STATIC
AccessScopeChecker.cpp
AccessRequests.cpp
ASTContext.cpp
ASTDemangler.cpp
ASTDumper.cpp
ASTMangler.cpp
ASTNode.cpp
ASTPrinter.cpp
ASTScope.cpp
ASTVerifier.cpp
ASTWalker.cpp
Attr.cpp
Availability.cpp
AvailabilitySpec.cpp
Builtins.cpp
CaptureInfo.cpp
ConcreteDeclRef.cpp
ConformanceLookupTable.cpp
Decl.cpp
DeclContext.cpp
DeclNameLoc.cpp
DiagnosticConsumer.cpp
DiagnosticEngine.cpp
DiagnosticList.cpp
DocComment.cpp
Evaluator.cpp
ExperimentalDependencies.cpp
ExperimentalDependenciesSourceFileDepGraphConstructor.cpp
Expr.cpp
GenericEnvironment.cpp
GenericSignature.cpp
GenericSignatureBuilder.cpp
Identifier.cpp
InlinableText.cpp
LayoutConstraint.cpp
Module.cpp
ModuleLoader.cpp
ModuleNameLookup.cpp
NameLookup.cpp
NameLookupRequests.cpp
Parameter.cpp
Pattern.cpp
PlatformKind.cpp
PrettyStackTrace.cpp
ProtocolConformance.cpp
RawComment.cpp
RequirementEnvironment.cpp
SyntaxASTMap.cpp
SILLayout.cpp
Stmt.cpp
SubstitutionMap.cpp
SwiftNameTranslation.cpp
Type.cpp
TypeCheckRequests.cpp
TypeJoinMeet.cpp
TypeRefinementContext.cpp
TypeRepr.cpp
TypeWalker.cpp
UnqualifiedLookup.cpp
USRGeneration.cpp
INTERFACE_LINK_LIBRARIES
${SWIFTAST_INTERFACE_LINK_LIBRARIES}
LLVM_COMPONENT_DEPENDS
${SWIFTAST_LLVM_COMPONENT_DEPENDS}
${EXTRA_AST_FLAGS}
)
if(SWIFT_BUILD_ONLY_SYNTAXPARSERLIB)
# Add clangBasic as a single direct dependency to avoid bringing along some
# llvm libraries that we don't need.
if("${SWIFT_HOST_VARIANT_SDK}" STREQUAL "WINDOWS")
set(clangBasicDep "${LLVM_LIBRARY_OUTPUT_INTDIR}/clangBasic.lib")
else()
set(clangBasicDep "${LLVM_LIBRARY_OUTPUT_INTDIR}/libclangBasic.a")
endif()
target_link_libraries(swiftAST PRIVATE
swiftBasic
swiftSyntax
${clangBasicDep})
target_compile_definitions(swiftAST PRIVATE
SWIFT_BUILD_ONLY_SYNTAXPARSERLIB=1)
else()
target_link_libraries(swiftAST PRIVATE
swiftBasic
swiftMarkup
swiftSyntax)
endif()
# intrinsics_gen is the LLVM tablegen target that generates the include files
# where intrinsics and attributes are declared. swiftAST depends on these
# headers.
# For more information see the comment at the top of lib/CMakeLists.txt.
add_dependencies(swiftAST intrinsics_gen clang-tablegen-targets)
set(swift_ast_verifier_flag)
if(SWIFT_AST_VERIFIER)
set(swift_ast_verifier_flag " -USWIFT_DISABLE_AST_VERIFIER")
else()
set(swift_ast_verifier_flag " -DSWIFT_DISABLE_AST_VERIFIER=1")
endif()
set_property(SOURCE Verifier.cpp APPEND_STRING PROPERTY COMPILE_FLAGS
"${swift_ast_verifier_flag}")