CMake: Add an option to disable LLVM support.
This makes the disassembler only work for x86.
This commit is contained in:
parent
6033250beb
commit
c57f7414a8
|
@ -19,6 +19,7 @@ option(ENABLE_ALSA "Enables ALSA sound backend" ON)
|
|||
option(ENABLE_AO "Enables libao sound backend" ON)
|
||||
option(ENABLE_PULSEAUDIO "Enables PulseAudio sound backend" ON)
|
||||
option(ENABLE_OPENAL "Enables OpenAL sound backend" ON)
|
||||
option(ENABLE_LLVM "Enables LLVM support, for disassembly" ON)
|
||||
|
||||
# Maintainers: if you consider blanket disabling this for your users, please
|
||||
# consider the following points:
|
||||
|
@ -511,8 +512,9 @@ else()
|
|||
message("OpenAL explicitly disabled, disabling OpenAL sound backend")
|
||||
endif()
|
||||
|
||||
include(FindLLVM OPTIONAL)
|
||||
if (LLVM_FOUND)
|
||||
if(ENABLE_LLVM)
|
||||
include(FindLLVM OPTIONAL)
|
||||
if (LLVM_FOUND)
|
||||
add_definitions(-DHAS_LLVM=1)
|
||||
set(HAS_LLVM 1)
|
||||
|
||||
|
@ -520,6 +522,7 @@ if (LLVM_FOUND)
|
|||
list(APPEND LIBS ${LLVM_LIBRARIES})
|
||||
|
||||
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(USE_X11 0)
|
||||
|
|
Loading…
Reference in New Issue