forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing dependency on Target lib for tools
This was exposed by r238842 (which was reverted by r238900) when doing a CMake build with -DBUILD_SHARED_LIBS=ON. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238953 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
4ce10b5
commit 5d42ddc
Showing
5 changed files
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS | |
MC | ||
Object | ||
Support | ||
Target | ||
) | ||
|
||
add_llvm_tool(llvm-dsymutil | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ set(LLVM_LINK_COMPONENTS | |
ScalarOpts | ||
SelectionDAG | ||
Support | ||
Target | ||
) | ||
|
||
# Support plugins. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ set(LLVM_LINK_COMPONENTS | |
RuntimeDyld | ||
SelectionDAG | ||
Support | ||
Target | ||
TransformUtils | ||
native | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS | |
LTO | ||
MC | ||
Support | ||
Target | ||
) | ||
|
||
add_llvm_tool(llvm-lto | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS | |
MC | ||
MCDisassembler | ||
Support | ||
Target | ||
) | ||
|
||
set(SOURCES | ||
|