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 | 8a89a6ae9c3fb524cda60768e094ba481ac17be1 (patch) | |
tree | 7b60f991a600fa78f6cecdb244b23241ff50dd4b | |
parent | 89ba74d117577f5a1bd62ee209dc2ecb090172e3 (diff) | |
download | external_llvm-8a89a6ae9c3fb524cda60768e094ba481ac17be1.zip external_llvm-8a89a6ae9c3fb524cda60768e094ba481ac17be1.tar.gz external_llvm-8a89a6ae9c3fb524cda60768e094ba481ac17be1.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) |