diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2010-07-22 06:27:45 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2010-07-22 06:27:45 +0000 |
| commit | 38dfb28983f7e48fef4aa58a3c4faa83dbb6b856 (patch) | |
| tree | 7b60f991a600fa78f6cecdb244b23241ff50dd4b | |
| parent | 8765b940b160e86c9d88fadbdef1a4dd8ad98df8 (diff) | |
| download | external_llvm-38dfb28983f7e48fef4aa58a3c4faa83dbb6b856.zip external_llvm-38dfb28983f7e48fef4aa58a3c4faa83dbb6b856.tar.gz external_llvm-38dfb28983f7e48fef4aa58a3c4faa83dbb6b856.tar.bz2 | |
Attempt to fix linking issues with CMake. Please review other CMake users,
especially on other platforms. Is there a better way to fix this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109084 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | lib/Target/ARM/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | lib/Target/X86/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/CMakeLists.txt b/lib/Target/ARM/CMakeLists.txt index db8087c..5e15b20 100644 --- a/lib/Target/ARM/CMakeLists.txt +++ b/lib/Target/ARM/CMakeLists.txt @@ -45,4 +45,4 @@ add_llvm_target(ARMCodeGen Thumb2SizeReduction.cpp ) -target_link_libraries (LLVMARMCodeGen LLVMSelectionDAG) +target_link_libraries (LLVMARMCodeGen LLVMARMAsmPrinter LLVMSelectionDAG) diff --git a/lib/Target/X86/CMakeLists.txt b/lib/Target/X86/CMakeLists.txt index ca71709..8f19a71 100644 --- a/lib/Target/X86/CMakeLists.txt +++ b/lib/Target/X86/CMakeLists.txt @@ -50,4 +50,4 @@ endif() add_llvm_target(X86CodeGen ${sources}) -target_link_libraries (LLVMX86CodeGen LLVMSelectionDAG) +target_link_libraries (LLVMX86CodeGen LLVMX86AsmPrinter LLVMSelectionDAG) |
