diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 15:29:46 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 15:29:46 +0000 |
commit | 5cd6db9a514ccb37df20455e543c88df5594eec0 (patch) | |
tree | b0463d1922b6b3808f33861b2ac0567cc9f357a0 /tools/obj2yaml | |
parent | b6a633ca94dbdc9904733e6462b5e214a240a284 (diff) | |
download | external_llvm-5cd6db9a514ccb37df20455e543c88df5594eec0.zip external_llvm-5cd6db9a514ccb37df20455e543c88df5594eec0.tar.gz external_llvm-5cd6db9a514ccb37df20455e543c88df5594eec0.tar.bz2 |
Don't link with the archive library programs that don't use it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/obj2yaml')
-rw-r--r-- | tools/obj2yaml/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/obj2yaml/CMakeLists.txt b/tools/obj2yaml/CMakeLists.txt index d64bf1b..6b39193 100644 --- a/tools/obj2yaml/CMakeLists.txt +++ b/tools/obj2yaml/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LLVM_LINK_COMPONENTS archive object) +set(LLVM_LINK_COMPONENTS object) add_llvm_utility(obj2yaml obj2yaml.cpp coff2yaml.cpp |