diff --git a/lib/MC/CMakeLists.txt b/lib/MC/CMakeLists.txt index 4fc9993795b..277fb26543e 100644 --- a/lib/MC/CMakeLists.txt +++ b/lib/MC/CMakeLists.txt @@ -8,6 +8,7 @@ add_llvm_library(LLVMMC MCAssembler.cpp MCCodeEmitter.cpp MCContext.cpp + MCDisassembler.cpp MCExpr.cpp MCInst.cpp MCMachOStreamer.cpp diff --git a/lib/Support/CMakeLists.txt b/lib/Support/CMakeLists.txt index 77e738b8b59..4f023973a1f 100644 --- a/lib/Support/CMakeLists.txt +++ b/lib/Support/CMakeLists.txt @@ -16,6 +16,7 @@ add_llvm_library(LLVMSupport IsNAN.cpp ManagedStatic.cpp MemoryBuffer.cpp + MemoryObject.cpp PluginLoader.cpp PrettyStackTrace.cpp Regex.cpp diff --git a/lib/Target/X86/AsmPrinter/CMakeLists.txt b/lib/Target/X86/AsmPrinter/CMakeLists.txt index 1a338e76db6..7a0bc4b30bd 100644 --- a/lib/Target/X86/AsmPrinter/CMakeLists.txt +++ b/lib/Target/X86/AsmPrinter/CMakeLists.txt @@ -4,7 +4,7 @@ add_llvm_library(LLVMX86AsmPrinter X86ATTAsmPrinter.cpp X86ATTInstPrinter.cpp X86AsmPrinter.cpp - X86MCInstLower.cpp X86IntelAsmPrinter.cpp + X86MCInstLower.cpp ) add_dependencies(LLVMX86AsmPrinter X86CodeGenTable_gen)