2022-08-15 20:00:14 +02:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
2022-12-03 22:11:36 +01:00
|
|
|
project(dynarmic LANGUAGES C CXX ASM VERSION 6.4.0)
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2017-02-04 21:31:10 +01:00
|
|
|
# Determine if we're built as a subproject (using add_subdirectory)
|
|
|
|
# or if this is the master project.
|
|
|
|
set(MASTER_PROJECT OFF)
|
|
|
|
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
|
|
|
|
set(MASTER_PROJECT ON)
|
|
|
|
endif()
|
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
# Dynarmic project options
|
2018-01-24 20:14:19 +01:00
|
|
|
option(DYNARMIC_ENABLE_CPU_FEATURE_DETECTION "Turning this off causes dynarmic to assume the host CPU doesn't support anything later than SSE3" ON)
|
2018-08-23 21:52:50 +02:00
|
|
|
option(DYNARMIC_ENABLE_NO_EXECUTE_SUPPORT "Enables support for systems that require W^X" OFF)
|
2019-08-14 21:50:36 +02:00
|
|
|
option(DYNARMIC_FATAL_ERRORS "Errors are fatal" OFF)
|
2021-08-15 17:09:37 +02:00
|
|
|
option(DYNARMIC_IGNORE_ASSERTS "Ignore asserts" OFF)
|
2017-02-04 21:31:10 +01:00
|
|
|
option(DYNARMIC_TESTS "Build tests" ${MASTER_PROJECT})
|
2018-01-13 19:04:19 +01:00
|
|
|
option(DYNARMIC_TESTS_USE_UNICORN "Enable fuzzing tests against unicorn" OFF)
|
2018-08-23 21:52:50 +02:00
|
|
|
option(DYNARMIC_USE_LLVM "Support disassembly of jitted x86_64 code using LLVM" OFF)
|
2022-11-22 04:45:11 +01:00
|
|
|
option(DYNARMIC_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON)
|
2022-11-30 01:28:48 +01:00
|
|
|
option(DYNARMIC_USE_BUNDLED_EXTERNALS "Use all bundled externals (useful when e.g. cross-compiling)" OFF)
|
2017-02-04 21:31:10 +01:00
|
|
|
option(DYNARMIC_WARNINGS_AS_ERRORS "Warnings as errors" ${MASTER_PROJECT})
|
2020-04-18 12:32:38 +02:00
|
|
|
if (NOT DEFINED DYNARMIC_FRONTENDS)
|
|
|
|
set(DYNARMIC_FRONTENDS "A32;A64" CACHE STRING "Selects which frontends to enable")
|
|
|
|
endif()
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2017-11-28 21:08:45 +01:00
|
|
|
# Default to a Release build
|
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
|
|
|
|
message(STATUS "Defaulting to a Release build")
|
|
|
|
endif()
|
|
|
|
|
2016-08-22 15:12:46 +02:00
|
|
|
# Set hard requirements for C++
|
2021-08-15 16:16:31 +02:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2016-08-22 15:12:46 +02:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
2016-08-25 19:22:08 +02:00
|
|
|
# Disable in-source builds
|
|
|
|
set(CMAKE_DISABLE_SOURCE_CHANGES ON)
|
|
|
|
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
|
|
|
|
if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
|
|
|
|
message(SEND_ERROR "In-source builds are not allowed.")
|
|
|
|
endif()
|
|
|
|
|
2017-02-23 02:34:51 +01:00
|
|
|
# Add the module directory to the list of paths
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules")
|
2016-08-22 15:12:46 +02:00
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
# Compiler flags
|
2016-08-22 15:25:30 +02:00
|
|
|
if (MSVC)
|
2016-12-19 01:41:21 +01:00
|
|
|
set(DYNARMIC_CXX_FLAGS
|
2020-05-21 23:31:54 +02:00
|
|
|
/experimental:external
|
|
|
|
/external:W0
|
|
|
|
/external:anglebrackets
|
2016-12-19 01:41:21 +01:00
|
|
|
/W4
|
2020-05-21 23:31:54 +02:00
|
|
|
/w44263 # Non-virtual member function hides base class virtual function
|
2016-12-19 01:41:21 +01:00
|
|
|
/w44265 # Class has virtual functions, but destructor is not virtual
|
2020-05-21 23:31:54 +02:00
|
|
|
/w44456 # Declaration of 'var' hides previous local declaration
|
|
|
|
/w44457 # Declaration of 'var' hides function parameter
|
|
|
|
/w44458 # Declaration of 'var' hides class member
|
|
|
|
/w44459 # Declaration of 'var' hides global definition
|
|
|
|
/w44946 # Reinterpret-cast between related types
|
2016-12-19 01:41:21 +01:00
|
|
|
/wd4592 # Symbol will be dynamically initialized (implementation limitation)
|
2017-06-12 02:18:20 +02:00
|
|
|
/permissive- # Stricter C++ standards conformance
|
2016-12-19 01:41:21 +01:00
|
|
|
/MP
|
|
|
|
/Zi
|
|
|
|
/Zo
|
|
|
|
/EHsc
|
2019-05-04 06:29:54 +02:00
|
|
|
/Zc:externConstexpr # Allows external linkage for variables declared "extern constexpr", as the standard permits.
|
|
|
|
/Zc:inline # Omits inline functions from object-file output.
|
|
|
|
/Zc:throwingNew # Assumes new (without std::nothrow) never returns null.
|
2019-05-04 06:46:22 +02:00
|
|
|
/volatile:iso # Use strict standard-abiding volatile semantics
|
2020-04-23 21:38:57 +02:00
|
|
|
/bigobj # Increase number of sections in .obj files
|
2016-12-19 01:41:21 +01:00
|
|
|
/DNOMINMAX)
|
2016-12-03 17:06:09 +01:00
|
|
|
|
2017-02-04 21:31:10 +01:00
|
|
|
if (DYNARMIC_WARNINGS_AS_ERRORS)
|
|
|
|
list(APPEND DYNARMIC_CXX_FLAGS
|
|
|
|
/WX)
|
|
|
|
endif()
|
|
|
|
|
2016-12-03 17:06:09 +01:00
|
|
|
if (CMAKE_VS_PLATFORM_TOOLSET MATCHES "LLVM-vs[0-9]+")
|
2016-12-19 01:41:21 +01:00
|
|
|
list(APPEND DYNARMIC_CXX_FLAGS
|
|
|
|
-Qunused-arguments
|
2017-06-12 02:17:04 +02:00
|
|
|
-Wno-missing-braces)
|
2016-12-03 17:06:09 +01:00
|
|
|
endif()
|
2016-08-22 15:25:30 +02:00
|
|
|
else()
|
2016-12-19 01:41:21 +01:00
|
|
|
set(DYNARMIC_CXX_FLAGS
|
|
|
|
-Wall
|
|
|
|
-Wextra
|
|
|
|
-Wcast-qual
|
|
|
|
-pedantic
|
|
|
|
-pedantic-errors
|
2017-06-12 02:17:04 +02:00
|
|
|
-Wno-missing-braces)
|
2016-08-22 23:21:00 +02:00
|
|
|
|
2017-02-04 21:31:10 +01:00
|
|
|
if (DYNARMIC_WARNINGS_AS_ERRORS)
|
|
|
|
list(APPEND DYNARMIC_CXX_FLAGS
|
|
|
|
-Werror)
|
|
|
|
endif()
|
2019-08-14 21:50:36 +02:00
|
|
|
|
|
|
|
if (DYNARMIC_FATAL_ERRORS)
|
|
|
|
list(APPEND DYNARMIC_CXX_FLAGS
|
|
|
|
-Wfatal-errors)
|
|
|
|
endif()
|
2021-02-16 21:07:55 +01:00
|
|
|
|
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "[Cc]lang")
|
|
|
|
# Bracket depth determines maximum size of a fold expression in Clang since 9c9974c3ccb6.
|
|
|
|
# And this in turns limits the size of a std::array.
|
|
|
|
list(APPEND DYNARMIC_CXX_FLAGS -fbracket-depth=1024)
|
|
|
|
endif()
|
2016-07-12 14:25:33 +02:00
|
|
|
endif()
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
# Arch detection
|
2016-08-22 15:12:46 +02:00
|
|
|
include(DetectArchitecture)
|
2016-07-01 15:01:06 +02:00
|
|
|
if (NOT DEFINED ARCHITECTURE)
|
2019-05-04 06:10:45 +02:00
|
|
|
message(FATAL_ERROR "Unsupported architecture encountered. Ending CMake generation.")
|
2016-07-01 15:01:06 +02:00
|
|
|
endif()
|
|
|
|
message(STATUS "Target architecture: ${ARCHITECTURE}")
|
|
|
|
|
2022-11-30 01:28:48 +01:00
|
|
|
# Forced use of individual bundled libraries for non-REQUIRED library is possible with e.g. cmake -DCMAKE_DISABLE_FIND_PACKAGE_fmt=ON ...
|
|
|
|
|
|
|
|
if (DYNARMIC_USE_BUNDLED_EXTERNALS)
|
|
|
|
set(CMAKE_DISABLE_FIND_PACKAGE_Catch2 ON)
|
|
|
|
set(CMAKE_DISABLE_FIND_PACKAGE_fmt ON)
|
|
|
|
set(CMAKE_DISABLE_FIND_PACKAGE_tsl-robin-map ON)
|
|
|
|
set(CMAKE_DISABLE_FIND_PACKAGE_xbyak ON)
|
|
|
|
set(CMAKE_DISABLE_FIND_PACKAGE_Zydis ON)
|
|
|
|
endif()
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
find_package(Boost 1.57 REQUIRED)
|
2022-11-30 01:28:48 +01:00
|
|
|
find_package(fmt 9 QUIET)
|
|
|
|
find_package(tsl-robin-map QUIET)
|
2021-08-10 16:05:38 +02:00
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (ARCHITECTURE STREQUAL "x86" OR ARCHITECTURE STREQUAL "x86_64")
|
2022-11-30 01:28:48 +01:00
|
|
|
find_package(xbyak 6 QUIET)
|
|
|
|
find_package(Zydis 4 QUIET)
|
2021-08-24 12:28:44 +02:00
|
|
|
endif()
|
|
|
|
|
2016-08-05 02:50:31 +02:00
|
|
|
if (DYNARMIC_USE_LLVM)
|
|
|
|
find_package(LLVM REQUIRED CONFIG)
|
|
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
|
|
|
add_definitions(-DDYNARMIC_USE_LLVM ${LLVM_DEFINITIONS})
|
2020-05-17 23:30:46 +02:00
|
|
|
llvm_map_components_to_libnames(llvm_libs armdesc armdisassembler aarch64desc aarch64disassembler x86desc x86disassembler)
|
2016-08-05 02:50:31 +02:00
|
|
|
endif()
|
|
|
|
|
2022-11-22 02:42:52 +01:00
|
|
|
if (DYNARMIC_TESTS)
|
2022-11-30 01:28:48 +01:00
|
|
|
find_package(Catch2 2 QUIET)
|
2022-11-22 02:42:52 +01:00
|
|
|
if (DYNARMIC_TESTS_USE_UNICORN)
|
|
|
|
find_package(Unicorn REQUIRED)
|
|
|
|
endif()
|
2021-08-10 16:05:38 +02:00
|
|
|
endif()
|
|
|
|
|
2016-08-25 23:21:19 +02:00
|
|
|
# Pull in externals CMakeLists for libs where available
|
|
|
|
add_subdirectory(externals)
|
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
# Dynarmic project files
|
2021-05-19 18:28:35 +02:00
|
|
|
add_subdirectory(src/dynarmic)
|
2016-09-02 13:29:19 +02:00
|
|
|
if (DYNARMIC_TESTS)
|
2022-11-30 01:28:48 +01:00
|
|
|
enable_testing(true)
|
2016-09-02 13:29:19 +02:00
|
|
|
add_subdirectory(tests)
|
|
|
|
endif()
|
2021-10-12 10:09:21 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Install
|
|
|
|
#
|
2022-11-22 02:42:52 +01:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
|
|
|
|
install(TARGETS dynarmic EXPORT dynarmicTargets)
|
|
|
|
install(EXPORT dynarmicTargets
|
|
|
|
NAMESPACE dynarmic::
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/dynarmic"
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_package_config_file(CMakeModules/dynarmicConfig.cmake.in
|
|
|
|
dynarmicConfig.cmake
|
|
|
|
INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/dynarmic"
|
|
|
|
)
|
|
|
|
write_basic_package_version_file(dynarmicConfigVersion.cmake
|
|
|
|
COMPATIBILITY SameMajorVersion
|
|
|
|
)
|
|
|
|
install(FILES
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/dynarmicConfig.cmake"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/dynarmicConfigVersion.cmake"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/dynarmic"
|
|
|
|
)
|
|
|
|
|
|
|
|
install(DIRECTORY src/dynarmic TYPE INCLUDE FILES_MATCHING PATTERN "*.h")
|