mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
Revert "Add option to build using llvm shared libs and document other cmake options"
This reverts commit 6f33953861
.
This commit is contained in:
parent
1d375cb13c
commit
a3c49bea2c
@ -1,9 +1,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.0.2)
|
cmake_minimum_required(VERSION 3.0.2)
|
||||||
|
|
||||||
option(WITH_GDB "Build RPCS3 with GNU GDB debugger support." OFF)
|
option(WITH_GDB "WITH_GDB" OFF)
|
||||||
option(WITHOUT_LLVM "Build RPCS3 without LLVM (not recommended)." OFF)
|
option(WITHOUT_LLVM "WITHOUT_LLVM" OFF)
|
||||||
option(USE_SHARED_LLVM_LIBS "Link against shared LLVM libs, instead of statically.
|
|
||||||
Only recommended on Gentoo. May interfere with mesa driver and make RPCS3 non-functional." OFF)
|
|
||||||
|
|
||||||
if (WITH_GDB)
|
if (WITH_GDB)
|
||||||
add_definitions(-DWITH_GDB_DEBUGGER)
|
add_definitions(-DWITH_GDB_DEBUGGER)
|
||||||
|
@ -82,9 +82,6 @@ Build against the shared libpng instead of using the builtin one. libpng 1.6+ hi
|
|||||||
- ```-DUSE_SYSTEM_FFMPEG=ON/OFF``` (default = *OFF*)
|
- ```-DUSE_SYSTEM_FFMPEG=ON/OFF``` (default = *OFF*)
|
||||||
Build against the shared ffmpeg libraries instead of using the builtin patched version. Try this if the builtin version breaks the OpenGL renderer for you.
|
Build against the shared ffmpeg libraries instead of using the builtin patched version. Try this if the builtin version breaks the OpenGL renderer for you.
|
||||||
|
|
||||||
- ```-DUSE_SHARED_LLVM_LIBS=ON/OFF``` (default = *OFF*)
|
|
||||||
This builds against the shared LLVM libs, rather than the static ones. This may interfere with Mesa and render RPCS3 non-functional. Only recommended on gentoo.
|
|
||||||
|
|
||||||
- ```-DWITHOUT_LLVM=ON/OFF``` (default = *OFF*)
|
- ```-DWITHOUT_LLVM=ON/OFF``` (default = *OFF*)
|
||||||
This forces RPCS3 to build without LLVM, not recommended.
|
This forces RPCS3 to build without LLVM, not recommended.
|
||||||
|
|
||||||
|
@ -272,18 +272,11 @@ if(NOT LLVM_FOUND)
|
|||||||
else()
|
else()
|
||||||
add_definitions(${LLVM_DEFINITIONS})
|
add_definitions(${LLVM_DEFINITIONS})
|
||||||
add_definitions(-DLLVM_AVAILABLE)
|
add_definitions(-DLLVM_AVAILABLE)
|
||||||
|
|
||||||
# Gentoo doesn't provide static LLVM libraries, so we need an option to use the shared ones.
|
|
||||||
if (USE_SHARED_LLVM_LIBS)
|
|
||||||
Message("WARNING! Linking against shared LLVM libs may conflict with your system's mesa, rendering RPCS3 non-functional!")
|
|
||||||
set(LLVM_LIBS LLVM)
|
|
||||||
else()
|
|
||||||
if (CMAKE_BUILD_TYPE STREQUAL "Release")
|
if (CMAKE_BUILD_TYPE STREQUAL "Release")
|
||||||
llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize ipo x86codegen x86disassembler)
|
llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize ipo x86codegen x86disassembler)
|
||||||
else()
|
else()
|
||||||
llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize ipo x86codegen x86disassembler mcdisassembler)
|
llvm_map_components_to_libnames(LLVM_LIBS mcjit vectorize ipo x86codegen x86disassembler mcdisassembler)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
|
||||||
|
|
||||||
if (NOT MSVC)
|
if (NOT MSVC)
|
||||||
set_source_files_properties(${RPCS3_SRC_DIR}/../Utilities/JIT.cpp PROPERTIES COMPILE_FLAGS -fno-rtti)
|
set_source_files_properties(${RPCS3_SRC_DIR}/../Utilities/JIT.cpp PROPERTIES COMPILE_FLAGS -fno-rtti)
|
||||||
|
Loading…
Reference in New Issue
Block a user