From 3566477679b4873c63f0b81a77af8749646f71e4 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 29 Jul 2011 20:23:34 +0000 Subject: [PATCH] On mac, it seems the MC disassembler is actually using the targetinfo for targets that don't have an MC-ized disassembler. I'm suspicious that this shouldn't actually be happening, but hoping to fix the CMake build on macs first, and investigate why second. llvm-svn: 136508 --- llvm/lib/MC/MCDisassembler/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/MC/MCDisassembler/CMakeLists.txt b/llvm/lib/MC/MCDisassembler/CMakeLists.txt index 9ccd1f4a9e63..45ec75d00e4d 100644 --- a/llvm/lib/MC/MCDisassembler/CMakeLists.txt +++ b/llvm/lib/MC/MCDisassembler/CMakeLists.txt @@ -17,5 +17,7 @@ foreach(t ${LLVM_TARGETS_TO_BUILD}) set(td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}) if(EXISTS ${td}/Disassembler/CMakeLists.txt) add_llvm_library_dependencies(LLVMMCDisassembler "LLVM${t}Disassembler") + elseif(EXISTS ${td}/TargetInfo/CMakeLists.txt) + add_llvm_library_dependencies(LLVMMCDisassembler "LLVM${t}Info") endif() endforeach(t)