From 831858ce7eb97dd9746ec91283365ae0c99a278a Mon Sep 17 00:00:00 2001 From: Danila Malyutin Date: Tue, 21 Jul 2015 22:47:35 +0300 Subject: [PATCH] Change jit to mcjit in CMakeLists This fixes compiling on linux --- rpcs3/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/CMakeLists.txt b/rpcs3/CMakeLists.txt index 6ca487be90..3aece465e6 100644 --- a/rpcs3/CMakeLists.txt +++ b/rpcs3/CMakeLists.txt @@ -100,9 +100,9 @@ ${LLVM_INCLUDE_DIRS} add_definitions(${LLVM_DEFINITIONS}) add_definitions(-DLLVM_AVAILABLE) if (CMAKE_BUILD_TYPE STREQUAL "Release") - llvm_map_components_to_libnames(LLVM_LIBS jit vectorize x86codegen x86disassembler) + llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize x86codegen x86disassembler) else() - llvm_map_components_to_libnames(LLVM_LIBS jit vectorize x86codegen x86disassembler mcdisassembler) + llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize x86codegen x86disassembler mcdisassembler) endif() link_directories("${RPCS3_SRC_DIR}/../ffmpeg/${PLATFORM_ARCH}/lib")