File tree Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: a9be23e44b65d20957f94e9d117becdfa7dfe88d
2
+ refs/heads/master: dceb4041b18c47764c6dbdf00ce49090eb048608
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ add_swift_host_library(swiftFrontendTool STATIC
17
17
swiftClangImporter
18
18
swiftDWARFImporter
19
19
swiftOption
20
+ INTERFACE_LINK_LIBRARIES
20
21
clangAPINotes
21
22
clangBasic
22
23
)
Original file line number Diff line number Diff line change @@ -57,8 +57,13 @@ add_swift_host_library(swiftIRGen STATIC
57
57
swiftSILGen
58
58
swiftSILOptimizer
59
59
60
+ INTERFACE_LINK_LIBRARIES
60
61
# Clang dependencies.
61
62
# FIXME: Clang should really export these in some reasonable manner.
62
63
clangCodeGen
63
64
clangAST
65
+
66
+ LLVM_COMPONENT_DEPENDS
67
+ target
68
+ transformutils
64
69
)
Original file line number Diff line number Diff line change @@ -8,5 +8,8 @@ add_swift_host_library(swiftImmediate STATIC
8
8
swiftSILOptimizer
9
9
swiftIRGen
10
10
LLVM_COMPONENT_DEPENDS
11
- linker mcjit )
11
+ executionengine
12
+ linker
13
+ mcjit
14
+ transformutils )
12
15
Original file line number Diff line number Diff line change @@ -6,4 +6,6 @@ add_swift_host_library(swiftTBDGen STATIC
6
6
LINK_LIBRARIES
7
7
swiftAST
8
8
swiftSIL
9
+ LLVM_COMPONENT_DEPENDS
10
+ demangle
9
11
)
Original file line number Diff line number Diff line change @@ -10,4 +10,11 @@ target_link_libraries(swift-llvm-opt
10
10
swiftAST
11
11
# Clang libraries included to appease the linker on linux.
12
12
clangBasic
13
- clangCodeGen )
13
+ clangCodeGen
14
+ # LLVM libraries included to appease the linker on linux.
15
+ LLVMAggressiveInstCombine
16
+ LLVMCodeGen
17
+ LLVMInstCombine
18
+ LLVMScalarOpts
19
+ LLVMVectorize
20
+ )
You can’t perform that action at this time.
0 commit comments