Revert "Add option to build using llvm shared libs and document other cmake options"

This reverts commit 6f33953861.
This commit is contained in:
Zion Nimchuk 2017-10-09 11:00:45 -07:00 committed by Ani
parent 1d375cb13c
commit a3c49bea2c
3 changed files with 5 additions and 17 deletions

View file

@ -1,9 +1,7 @@
cmake_minimum_required(VERSION 3.0.2)
option(WITH_GDB "Build RPCS3 with GNU GDB debugger support." OFF)
option(WITHOUT_LLVM "Build RPCS3 without LLVM (not recommended)." 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)
option(WITH_GDB "WITH_GDB" OFF)
option(WITHOUT_LLVM "WITHOUT_LLVM" OFF)
if (WITH_GDB)
add_definitions(-DWITH_GDB_DEBUGGER)