Files
swift-mirror/tools/sil-passpipeline-dumper/CMakeLists.txt
Jordan Rose 9e2577d379 [CMake] Cope with circular dependencies by tweaking link order.
Linux (rather, gold) is stricter than macOS (ld64) about this, so
until we can eliminate the rest of the dependencies this is the
best workaround we have.
2017-07-17 12:18:41 -06:00

16 lines
362 B
CMake

add_swift_host_tool(sil-passpipeline-dumper
SILPassPipelineDumper.cpp
LINK_LIBRARIES
swiftFrontend
swiftSILGen
swiftSILOptimizer
swiftSerialization
swiftClangImporter
# FIXME: Circular dependencies require re-listing these libraries.
swiftSema
swiftAST
LLVM_COMPONENT_DEPENDS
DebugInfoCodeView
SWIFT_COMPONENT tools
)