2021-10-03 17:14:44 +03:00
|
|
|
# CMake setup for Unicorn 2.
|
|
|
|
# By Huitao Chen & Nguyen Anh Quynh, 2019-2020
|
2020-05-01 15:18:07 +03:00
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
cmake_minimum_required(VERSION 3.1)
|
2021-10-03 17:14:44 +03:00
|
|
|
|
|
|
|
# Workaround to fix wrong compiler on macos.
|
|
|
|
if ((APPLE) AND (NOT CMAKE_C_COMPILER))
|
|
|
|
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
project(unicorn C)
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_VERSION_MAJOR 2)
|
2019-09-08 11:42:43 +03:00
|
|
|
set(UNICORN_VERSION_MINOR 0)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_VERSION_PATCH 0)
|
2019-09-08 11:42:43 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
option(UNICORN_BUILD_SHARED "Build shared instead of static library" ON)
|
2020-05-31 19:00:07 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
if (NOT UNICORN_ARCH)
|
|
|
|
# build all architectures
|
|
|
|
set(UNICORN_ARCH "x86 arm aarch64 riscv mips sparc m68k ppc")
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
string(TOUPPER ${UNICORN_ARCH} UNICORN_ARCH)
|
|
|
|
string(REPLACE " " ";" UNICORN_ARCH_LIST ${UNICORN_ARCH})
|
|
|
|
|
|
|
|
foreach(ARCH_LOOP ${UNICORN_ARCH_LIST})
|
|
|
|
set(UNICORN_HAS_${ARCH_LOOP} TRUE)
|
|
|
|
endforeach(ARCH_LOOP)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
include_directories(
|
2021-10-03 17:14:44 +03:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/msvc
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include_directories(
|
2021-10-03 17:14:44 +03:00
|
|
|
glib_compat
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu
|
|
|
|
qemu/include
|
|
|
|
include
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/tcg
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(MSVC_FLAG -D__x86_64__)
|
2019-09-08 11:42:43 +03:00
|
|
|
elseif(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(MSVC_FLAG -D__i386__)
|
2019-09-08 11:42:43 +03:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Neither WIN64 or WIN32!")
|
|
|
|
endif()
|
|
|
|
add_compile_options(
|
|
|
|
-Dinline=__inline
|
|
|
|
-D__func__=__FUNCTION__
|
|
|
|
-D_CRT_SECURE_NO_WARNINGS
|
|
|
|
-DWIN32_LEAN_AND_MEAN
|
|
|
|
${MSVC_FLAG}
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/tcg/i386
|
|
|
|
)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4018 /wd4098 /wd4244 /wd4267")
|
2019-09-08 11:42:43 +03:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
string(REPLACE "/ZI" "/Zi" CMAKE_C_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG})
|
|
|
|
endif()
|
|
|
|
# default use the multithread, static version of the run-time library.
|
|
|
|
option(UNICORN_STATIC_MSVCRT "Embed static runtime library" ON)
|
|
|
|
if (UNICORN_STATIC_MSVCRT)
|
|
|
|
string(REPLACE "/MD" "/MT" CMAKE_C_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG})
|
|
|
|
string(REPLACE "/MD" "/MT" CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE})
|
|
|
|
endif()
|
|
|
|
else()
|
2021-10-03 17:14:44 +03:00
|
|
|
if (MINGW)
|
|
|
|
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpmachine
|
|
|
|
OUTPUT_VARIABLE UC_COMPILER_VERSION)
|
|
|
|
|
|
|
|
string(FIND "${UC_COMPILER_VERSION}" "i686" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
2020-04-29 03:47:48 +03:00
|
|
|
set(UNICORN_TARGET_ARCH "i386")
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_CFLAGS -m32)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
|
|
|
|
else()
|
2020-04-29 03:47:48 +03:00
|
|
|
set(UNICORN_TARGET_ARCH "i386")
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_CFLAGS -m64 -mcx16)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m64")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m64")
|
2020-04-29 03:47:48 +03:00
|
|
|
endif()
|
2021-10-05 23:42:44 +03:00
|
|
|
elseif(ANDROID_ABI)
|
|
|
|
string(FIND "${ANDROID_ABI}" "arm64" UC_RET)
|
|
|
|
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "aarch64")
|
|
|
|
else()
|
|
|
|
string(FIND "${ANDROID_ABI}" "armeabi" UC_RET)
|
|
|
|
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "arm")
|
|
|
|
else()
|
|
|
|
set(UNICORN_TARGET_ARCH "i386")
|
|
|
|
endif()
|
|
|
|
endif()
|
2021-10-03 17:14:44 +03:00
|
|
|
else()
|
|
|
|
execute_process(COMMAND ${CMAKE_C_COMPILER} -dM -E -
|
|
|
|
INPUT_FILE /dev/null
|
|
|
|
OUTPUT_VARIABLE UC_COMPILER_MACRO)
|
|
|
|
|
|
|
|
while(TRUE)
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__x86_64__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "i386")
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__ILP32__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_CFLAGS -mx32)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -mx32")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -mx32")
|
|
|
|
else()
|
|
|
|
set(UNICORN_CFLAGS -m64 -mcx16)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m64")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m64")
|
|
|
|
endif()
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__i386__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "i386")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__arm__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "arm")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__aarch64__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "aarch64")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__mips__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "mips")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__sparc__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "sparc")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__ia64__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "ia64")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "_ARCH_PPC" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "ppc")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__riscv" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "riscv")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
string(FIND "${UC_COMPILER_MACRO}" "__s390__" UC_RET)
|
|
|
|
if (${UC_RET} GREATER_EQUAL "0")
|
|
|
|
set(UNICORN_TARGET_ARCH "s390")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
message(FATAL_ERROR "Unknown host compiler: ${CMAKE_C_COMPILER}.")
|
|
|
|
endwhile(TRUE)
|
|
|
|
endif()
|
2020-04-29 03:47:48 +03:00
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
set(EXTRA_CFLAGS "--extra-cflags=")
|
|
|
|
if (UNICORN_HAS_X86)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_X86 ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_ARM)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_ARM -DUNICORN_HAS_ARMEB ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_AARCH64)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_ARM64 -DUNICORN_HAS_ARM64EB ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_M68K)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_M68K ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_MIPS)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_MIPS -DUNICORN_HAS_MIPSEL -DUNICORN_HAS_MIPS64 -DUNICORN_HAS_MIPS64EL ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_SPARC)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_SPARC ")
|
|
|
|
endif()
|
2021-10-03 17:14:44 +03:00
|
|
|
if (UNICORN_HAS_PPC)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_PPC ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_RISCV)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-DUNICORN_HAS_RISCV ")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS}-fPIC")
|
2021-10-05 23:42:44 +03:00
|
|
|
if(ANDROID_ABI)
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS} --target=${CMAKE_C_COMPILER_TARGET}")
|
|
|
|
set (EXTRA_CFLAGS "${EXTRA_CFLAGS} --sysroot=${CMAKE_SYSROOT}")
|
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
|
|
|
|
set(TARGET_LIST "--target-list=")
|
|
|
|
if (UNICORN_HAS_X86)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}x86_64-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_ARM)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}arm-softmmu, armeb-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_AARCH64)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}aarch64-softmmu, aarch64eb-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_M68K)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}m68k-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_MIPS)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}mips-softmmu, mipsel-softmmu, mips64-softmmu, mips64el-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_SPARC)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}sparc-softmmu, sparc64-softmmu, ")
|
|
|
|
endif()
|
2021-10-03 17:14:44 +03:00
|
|
|
if (UNICORN_HAS_PPC)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}ppc-softmmu, ppc64-softmmu, ")
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_RISCV)
|
|
|
|
set (TARGET_LIST "${TARGET_LIST}riscv32-softmmu, riscv64-softmmu, ")
|
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
set (TARGET_LIST "${TARGET_LIST} ")
|
|
|
|
|
2020-05-01 15:18:07 +03:00
|
|
|
# GEN config-host.mak & target directories
|
2019-09-08 11:42:43 +03:00
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/configure
|
2021-10-03 17:14:44 +03:00
|
|
|
--cc=${CMAKE_C_COMPILER}
|
2019-09-08 11:42:43 +03:00
|
|
|
${EXTRA_CFLAGS}
|
|
|
|
${TARGET_LIST}
|
2020-06-06 07:54:06 +03:00
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/config-host.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/config-host.h
|
|
|
|
)
|
|
|
|
if (UNICORN_HAS_X86)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/x86_64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/x86_64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_ARM)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/arm-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/arm-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/armeb-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/armeb-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_AARCH64)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/aarch64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/aarch64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/aarch64eb-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/aarch64eb-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_M68K)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/m68k-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/m68k-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_MIPS)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/mips-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/mips-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/mipsel-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/mipsel-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/mips64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/mips64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/mips64el-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/mips64el-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_SPARC)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/sparc-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/sparc-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/sparc64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/sparc64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
2021-10-03 17:14:44 +03:00
|
|
|
if (UNICORN_HAS_PPC)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/ppc-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/ppc-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/ppc64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/ppc64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_RISCV)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/riscv32-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/riscv32-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
execute_process(COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/qemu/scripts/create_config
|
|
|
|
INPUT_FILE ${CMAKE_BINARY_DIR}/riscv64-softmmu/config-target.mak
|
|
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/riscv64-softmmu/config-target.h
|
|
|
|
)
|
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
add_compile_options(
|
2021-10-03 17:14:44 +03:00
|
|
|
${UNICORN_CFLAGS}
|
2020-04-29 03:47:48 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/tcg/${UNICORN_TARGET_ARCH}
|
2019-09-08 11:42:43 +03:00
|
|
|
-D_GNU_SOURCE
|
|
|
|
-D_FILE_OFFSET_BITS=64
|
|
|
|
-D_LARGEFILE_SOURCE
|
2021-10-03 17:14:44 +03:00
|
|
|
-Wall
|
|
|
|
-fPIC
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
2021-10-03 17:14:44 +03:00
|
|
|
if (APPLE)
|
|
|
|
# This warning is disabled by default for gcc and doesn't cause any bug.
|
|
|
|
add_compile_options(
|
|
|
|
-Wno-missing-braces
|
|
|
|
)
|
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_ARCH_COMMON
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/exec.c
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/exec-vary.c
|
|
|
|
|
|
|
|
qemu/softmmu/cpus.c
|
|
|
|
qemu/softmmu/ioport.c
|
|
|
|
qemu/softmmu/memory.c
|
|
|
|
qemu/softmmu/memory_mapping.c
|
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/fpu/softfloat.c
|
2021-10-03 17:14:44 +03:00
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/tcg/optimize.c
|
|
|
|
qemu/tcg/tcg.c
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/tcg/tcg-op.c
|
|
|
|
qemu/tcg/tcg-op-gvec.c
|
|
|
|
qemu/tcg/tcg-op-vec.c
|
|
|
|
|
|
|
|
qemu/accel/tcg/cpu-exec.c
|
|
|
|
qemu/accel/tcg/cpu-exec-common.c
|
|
|
|
qemu/accel/tcg/cputlb.c
|
|
|
|
qemu/accel/tcg/tcg-all.c
|
|
|
|
qemu/accel/tcg/tcg-runtime.c
|
|
|
|
qemu/accel/tcg/tcg-runtime-gvec.c
|
|
|
|
qemu/accel/tcg/translate-all.c
|
|
|
|
qemu/accel/tcg/translator.c
|
|
|
|
)
|
|
|
|
|
|
|
|
if (UNICORN_HAS_X86)
|
|
|
|
add_library(x86_64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/hw/i386/x86.c
|
|
|
|
|
|
|
|
qemu/target/i386/arch_memory_mapping.c
|
|
|
|
qemu/target/i386/bpt_helper.c
|
|
|
|
qemu/target/i386/cc_helper.c
|
|
|
|
qemu/target/i386/cpu.c
|
|
|
|
qemu/target/i386/excp_helper.c
|
|
|
|
qemu/target/i386/fpu_helper.c
|
|
|
|
qemu/target/i386/helper.c
|
|
|
|
qemu/target/i386/int_helper.c
|
|
|
|
qemu/target/i386/machine.c
|
|
|
|
qemu/target/i386/mem_helper.c
|
|
|
|
qemu/target/i386/misc_helper.c
|
|
|
|
qemu/target/i386/mpx_helper.c
|
|
|
|
qemu/target/i386/seg_helper.c
|
|
|
|
qemu/target/i386/smm_helper.c
|
|
|
|
qemu/target/i386/svm_helper.c
|
|
|
|
qemu/target/i386/translate.c
|
|
|
|
qemu/target/i386/xsave_helper.c
|
|
|
|
qemu/target/i386/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(x86_64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIx86_64.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/x86_64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/i386
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(x86_64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include x86_64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/x86_64-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/i386
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
2021-10-05 13:47:27 +03:00
|
|
|
|
|
|
|
# Log and pow
|
|
|
|
target_link_libraries(x86_64-softmmu m)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_ARM)
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(arm-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/arm/cpu.c
|
|
|
|
qemu/target/arm/crypto_helper.c
|
|
|
|
qemu/target/arm/debug_helper.c
|
|
|
|
qemu/target/arm/helper.c
|
|
|
|
qemu/target/arm/iwmmxt_helper.c
|
|
|
|
qemu/target/arm/m_helper.c
|
|
|
|
qemu/target/arm/neon_helper.c
|
|
|
|
qemu/target/arm/op_helper.c
|
|
|
|
qemu/target/arm/psci.c
|
|
|
|
qemu/target/arm/tlb_helper.c
|
|
|
|
qemu/target/arm/translate.c
|
|
|
|
qemu/target/arm/vec_helper.c
|
|
|
|
qemu/target/arm/vfp_helper.c
|
|
|
|
qemu/target/arm/unicorn_arm.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(arm-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIarm.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/arm-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(arm-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include arm.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/arm-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(armeb-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/arm/cpu.c
|
|
|
|
qemu/target/arm/crypto_helper.c
|
|
|
|
qemu/target/arm/debug_helper.c
|
|
|
|
qemu/target/arm/helper.c
|
|
|
|
qemu/target/arm/iwmmxt_helper.c
|
|
|
|
qemu/target/arm/m_helper.c
|
|
|
|
qemu/target/arm/neon_helper.c
|
|
|
|
qemu/target/arm/op_helper.c
|
|
|
|
qemu/target/arm/psci.c
|
|
|
|
qemu/target/arm/tlb_helper.c
|
|
|
|
qemu/target/arm/translate.c
|
|
|
|
qemu/target/arm/vec_helper.c
|
|
|
|
qemu/target/arm/vfp_helper.c
|
|
|
|
qemu/target/arm/unicorn_arm.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(armeb-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIarmeb.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/armeb-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(armeb-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include armeb.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/armeb-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_AARCH64)
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(aarch64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/arm/cpu64.c
|
|
|
|
qemu/target/arm/cpu.c
|
|
|
|
qemu/target/arm/crypto_helper.c
|
|
|
|
qemu/target/arm/debug_helper.c
|
|
|
|
qemu/target/arm/helper-a64.c
|
|
|
|
qemu/target/arm/helper.c
|
|
|
|
qemu/target/arm/iwmmxt_helper.c
|
|
|
|
qemu/target/arm/m_helper.c
|
|
|
|
qemu/target/arm/neon_helper.c
|
|
|
|
qemu/target/arm/op_helper.c
|
|
|
|
qemu/target/arm/pauth_helper.c
|
|
|
|
qemu/target/arm/psci.c
|
|
|
|
qemu/target/arm/sve_helper.c
|
|
|
|
qemu/target/arm/tlb_helper.c
|
|
|
|
qemu/target/arm/translate-a64.c
|
|
|
|
qemu/target/arm/translate.c
|
|
|
|
qemu/target/arm/translate-sve.c
|
|
|
|
qemu/target/arm/vec_helper.c
|
|
|
|
qemu/target/arm/vfp_helper.c
|
|
|
|
qemu/target/arm/unicorn_aarch64.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(aarch64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIaarch64.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/aarch64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(aarch64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include aarch64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/aarch64-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(aarch64eb-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/arm/cpu64.c
|
|
|
|
qemu/target/arm/cpu.c
|
|
|
|
qemu/target/arm/crypto_helper.c
|
|
|
|
qemu/target/arm/debug_helper.c
|
|
|
|
qemu/target/arm/helper-a64.c
|
|
|
|
qemu/target/arm/helper.c
|
|
|
|
qemu/target/arm/iwmmxt_helper.c
|
|
|
|
qemu/target/arm/m_helper.c
|
|
|
|
qemu/target/arm/neon_helper.c
|
|
|
|
qemu/target/arm/op_helper.c
|
|
|
|
qemu/target/arm/pauth_helper.c
|
|
|
|
qemu/target/arm/psci.c
|
|
|
|
qemu/target/arm/sve_helper.c
|
|
|
|
qemu/target/arm/tlb_helper.c
|
|
|
|
qemu/target/arm/translate-a64.c
|
|
|
|
qemu/target/arm/translate.c
|
|
|
|
qemu/target/arm/translate-sve.c
|
|
|
|
qemu/target/arm/vec_helper.c
|
|
|
|
qemu/target/arm/vfp_helper.c
|
|
|
|
qemu/target/arm/unicorn_aarch64.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(aarch64eb-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIaarch64eb.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/aarch64eb-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(aarch64eb-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include aarch64eb.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/aarch64eb-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/arm
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_M68K)
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(m68k-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/m68k/cpu.c
|
|
|
|
qemu/target/m68k/fpu_helper.c
|
|
|
|
qemu/target/m68k/helper.c
|
|
|
|
qemu/target/m68k/op_helper.c
|
|
|
|
qemu/target/m68k/softfloat.c
|
|
|
|
qemu/target/m68k/translate.c
|
|
|
|
qemu/target/m68k/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(m68k-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIm68k.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/m68k-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/m68k
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(m68k-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include m68k.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/m68k-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/m68k
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_MIPS)
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(mips-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/mips/cp0_helper.c
|
|
|
|
qemu/target/mips/cp0_timer.c
|
|
|
|
qemu/target/mips/cpu.c
|
|
|
|
qemu/target/mips/dsp_helper.c
|
|
|
|
qemu/target/mips/fpu_helper.c
|
|
|
|
qemu/target/mips/helper.c
|
|
|
|
qemu/target/mips/lmi_helper.c
|
|
|
|
qemu/target/mips/msa_helper.c
|
|
|
|
qemu/target/mips/op_helper.c
|
|
|
|
qemu/target/mips/translate.c
|
|
|
|
qemu/target/mips/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(mips-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FImips.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/mips-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(mips-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include mips.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/mips-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(mipsel-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/mips/cp0_helper.c
|
|
|
|
qemu/target/mips/cp0_timer.c
|
|
|
|
qemu/target/mips/cpu.c
|
|
|
|
qemu/target/mips/dsp_helper.c
|
|
|
|
qemu/target/mips/fpu_helper.c
|
|
|
|
qemu/target/mips/helper.c
|
|
|
|
qemu/target/mips/lmi_helper.c
|
|
|
|
qemu/target/mips/msa_helper.c
|
|
|
|
qemu/target/mips/op_helper.c
|
|
|
|
qemu/target/mips/translate.c
|
|
|
|
qemu/target/mips/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(mipsel-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FImipsel.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/mipsel-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(mipsel-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include mipsel.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/mipsel-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(mips64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/mips/cp0_helper.c
|
|
|
|
qemu/target/mips/cp0_timer.c
|
|
|
|
qemu/target/mips/cpu.c
|
|
|
|
qemu/target/mips/dsp_helper.c
|
|
|
|
qemu/target/mips/fpu_helper.c
|
|
|
|
qemu/target/mips/helper.c
|
|
|
|
qemu/target/mips/lmi_helper.c
|
|
|
|
qemu/target/mips/msa_helper.c
|
|
|
|
qemu/target/mips/op_helper.c
|
|
|
|
qemu/target/mips/translate.c
|
|
|
|
qemu/target/mips/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(mips64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FImips64.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/mips64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(mips64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include mips64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/mips64-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(mips64el-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/mips/cp0_helper.c
|
|
|
|
qemu/target/mips/cp0_timer.c
|
|
|
|
qemu/target/mips/cpu.c
|
|
|
|
qemu/target/mips/dsp_helper.c
|
|
|
|
qemu/target/mips/fpu_helper.c
|
|
|
|
qemu/target/mips/helper.c
|
|
|
|
qemu/target/mips/lmi_helper.c
|
|
|
|
qemu/target/mips/msa_helper.c
|
|
|
|
qemu/target/mips/op_helper.c
|
|
|
|
qemu/target/mips/translate.c
|
|
|
|
qemu/target/mips/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(mips64el-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FImips64el.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/mips64el-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(mips64el-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include mips64el.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/mips64el-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/mips
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_SPARC)
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(sparc-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/sparc/cc_helper.c
|
|
|
|
qemu/target/sparc/cpu.c
|
|
|
|
qemu/target/sparc/fop_helper.c
|
|
|
|
qemu/target/sparc/helper.c
|
|
|
|
qemu/target/sparc/int32_helper.c
|
|
|
|
qemu/target/sparc/ldst_helper.c
|
|
|
|
qemu/target/sparc/mmu_helper.c
|
|
|
|
qemu/target/sparc/translate.c
|
|
|
|
qemu/target/sparc/win_helper.c
|
|
|
|
qemu/target/sparc/unicorn.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(sparc-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIsparc.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/sparc-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/sparc
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(sparc-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include sparc.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/sparc-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/sparc
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(sparc64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/sparc/cc_helper.c
|
|
|
|
qemu/target/sparc/cpu.c
|
|
|
|
qemu/target/sparc/fop_helper.c
|
|
|
|
qemu/target/sparc/helper.c
|
|
|
|
qemu/target/sparc/int64_helper.c
|
|
|
|
qemu/target/sparc/ldst_helper.c
|
|
|
|
qemu/target/sparc/mmu_helper.c
|
|
|
|
qemu/target/sparc/translate.c
|
|
|
|
qemu/target/sparc/vis_helper.c
|
|
|
|
qemu/target/sparc/win_helper.c
|
|
|
|
qemu/target/sparc/unicorn64.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(sparc64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
2020-06-02 11:04:33 +03:00
|
|
|
/FIsparc64.h
|
2021-10-03 17:14:44 +03:00
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/sparc64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/sparc
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(sparc64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include sparc64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/sparc64-softmmu
|
2021-10-03 17:14:44 +03:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/sparc
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
if (UNICORN_HAS_PPC)
|
|
|
|
add_library(ppc-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/hw/ppc/ppc.c
|
|
|
|
qemu/hw/ppc/ppc_booke.c
|
|
|
|
|
|
|
|
qemu/libdecnumber/decContext.c
|
|
|
|
qemu/libdecnumber/decNumber.c
|
|
|
|
qemu/libdecnumber/dpd/decimal128.c
|
|
|
|
qemu/libdecnumber/dpd/decimal32.c
|
|
|
|
qemu/libdecnumber/dpd/decimal64.c
|
|
|
|
|
|
|
|
qemu/target/ppc/cpu.c
|
|
|
|
qemu/target/ppc/cpu-models.c
|
|
|
|
qemu/target/ppc/dfp_helper.c
|
|
|
|
qemu/target/ppc/excp_helper.c
|
|
|
|
qemu/target/ppc/fpu_helper.c
|
|
|
|
qemu/target/ppc/int_helper.c
|
|
|
|
qemu/target/ppc/machine.c
|
|
|
|
qemu/target/ppc/mem_helper.c
|
|
|
|
qemu/target/ppc/misc_helper.c
|
|
|
|
qemu/target/ppc/mmu-hash32.c
|
|
|
|
qemu/target/ppc/mmu_helper.c
|
|
|
|
qemu/target/ppc/timebase_helper.c
|
|
|
|
qemu/target/ppc/translate.c
|
|
|
|
qemu/target/ppc/unicorn.c
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(ppc-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
/FIppc.h
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/ppc-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/ppc
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(ppc-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include ppc.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/ppc-softmmu
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/ppc
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(ppc64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/hw/ppc/ppc.c
|
|
|
|
qemu/hw/ppc/ppc_booke.c
|
|
|
|
|
|
|
|
qemu/libdecnumber/decContext.c
|
|
|
|
qemu/libdecnumber/decNumber.c
|
|
|
|
qemu/libdecnumber/dpd/decimal128.c
|
|
|
|
qemu/libdecnumber/dpd/decimal32.c
|
|
|
|
qemu/libdecnumber/dpd/decimal64.c
|
|
|
|
|
|
|
|
qemu/target/ppc/compat.c
|
|
|
|
qemu/target/ppc/cpu.c
|
|
|
|
qemu/target/ppc/cpu-models.c
|
|
|
|
qemu/target/ppc/dfp_helper.c
|
|
|
|
qemu/target/ppc/excp_helper.c
|
|
|
|
qemu/target/ppc/fpu_helper.c
|
|
|
|
qemu/target/ppc/int_helper.c
|
|
|
|
qemu/target/ppc/machine.c
|
|
|
|
qemu/target/ppc/mem_helper.c
|
|
|
|
qemu/target/ppc/misc_helper.c
|
|
|
|
qemu/target/ppc/mmu-book3s-v3.c
|
|
|
|
qemu/target/ppc/mmu-hash32.c
|
|
|
|
qemu/target/ppc/mmu-hash64.c
|
|
|
|
qemu/target/ppc/mmu_helper.c
|
|
|
|
qemu/target/ppc/mmu-radix64.c
|
|
|
|
qemu/target/ppc/timebase_helper.c
|
|
|
|
qemu/target/ppc/translate.c
|
|
|
|
qemu/target/ppc/unicorn.c
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(ppc64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
/FIppc64.h
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/ppc64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/ppc
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(ppc64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include ppc64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/ppc64-softmmu
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/ppc
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_HAS_RISCV)
|
|
|
|
add_library(riscv32-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/riscv/cpu.c
|
|
|
|
qemu/target/riscv/cpu_helper.c
|
|
|
|
qemu/target/riscv/csr.c
|
|
|
|
qemu/target/riscv/fpu_helper.c
|
|
|
|
qemu/target/riscv/op_helper.c
|
|
|
|
qemu/target/riscv/pmp.c
|
|
|
|
qemu/target/riscv/translate.c
|
|
|
|
qemu/target/riscv/unicorn.c
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(riscv32-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
/FIriscv32.h
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/riscv32-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/riscv
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(riscv32-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include riscv32.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/riscv32-softmmu
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/riscv
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(riscv64-softmmu
|
|
|
|
${UNICORN_ARCH_COMMON}
|
|
|
|
|
|
|
|
qemu/target/riscv/cpu.c
|
|
|
|
qemu/target/riscv/cpu_helper.c
|
|
|
|
qemu/target/riscv/csr.c
|
|
|
|
qemu/target/riscv/fpu_helper.c
|
|
|
|
qemu/target/riscv/op_helper.c
|
|
|
|
qemu/target/riscv/pmp.c
|
|
|
|
qemu/target/riscv/translate.c
|
|
|
|
qemu/target/riscv/unicorn.c
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(riscv64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
/FIriscv64.h
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/msvc/riscv64-softmmu
|
|
|
|
/I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/riscv
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(riscv64-softmmu PRIVATE
|
|
|
|
-DNEED_CPU_H
|
|
|
|
-include riscv64.h
|
|
|
|
-I${CMAKE_BINARY_DIR}/riscv64-softmmu
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/qemu/target/riscv
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
set(UNICORN_SRCS
|
|
|
|
uc.c
|
|
|
|
|
|
|
|
qemu/softmmu/vl.c
|
|
|
|
|
|
|
|
qemu/hw/core/cpu.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set(UNICORN_COMMON_SRCS
|
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
list.c
|
2021-10-03 17:14:44 +03:00
|
|
|
|
|
|
|
glib_compat/glib_compat.c
|
|
|
|
glib_compat/gtestutils.c
|
|
|
|
glib_compat/garray.c
|
|
|
|
glib_compat/gtree.c
|
|
|
|
glib_compat/grand.c
|
|
|
|
glib_compat/glist.c
|
|
|
|
glib_compat/gmem.c
|
|
|
|
glib_compat/gpattern.c
|
|
|
|
glib_compat/gslice.c
|
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/util/bitmap.c
|
|
|
|
qemu/util/bitops.c
|
|
|
|
qemu/util/crc32c.c
|
|
|
|
qemu/util/cutils.c
|
|
|
|
qemu/util/getauxval.c
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/util/guest-random.c
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/util/host-utils.c
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/util/osdep.c
|
|
|
|
qemu/util/qdist.c
|
|
|
|
qemu/util/qemu-timer.c
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/util/qemu-timer-common.c
|
2021-10-03 17:14:44 +03:00
|
|
|
qemu/util/range.c
|
|
|
|
qemu/util/qht.c
|
|
|
|
qemu/util/pagesize.c
|
|
|
|
qemu/util/cacheinfo.c
|
|
|
|
|
|
|
|
qemu/crypto/aes.c
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
# A workaround to avoid circle dependency between unicorn and *-softmmu
|
|
|
|
if (MSVC)
|
|
|
|
set(UNICORN_COMMON_SRCS
|
|
|
|
${UNICORN_COMMON_SRCS}
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/util/oslib-win32.c
|
|
|
|
qemu/util/qemu-thread-win32.c
|
|
|
|
)
|
2021-10-03 17:14:44 +03:00
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
enable_language(ASM_MASM)
|
|
|
|
set(UNICORN_COMMON_SRCS ${UNICORN_COMMON_SRCS} qemu/util/setjmp-wrapper-win32.asm)
|
2020-09-21 21:02:43 +03:00
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
else()
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMMON_SRCS
|
|
|
|
${UNICORN_COMMON_SRCS}
|
2019-09-08 11:42:43 +03:00
|
|
|
qemu/util/oslib-posix.c
|
|
|
|
qemu/util/qemu-thread-posix.c
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
add_library(unicorn-common
|
|
|
|
${UNICORN_COMMON_SRCS}
|
|
|
|
)
|
|
|
|
|
2021-10-05 23:42:44 +03:00
|
|
|
if (NOT MSVC AND NOT ANDROID_ABI)
|
2021-10-03 17:14:44 +03:00
|
|
|
target_link_libraries(unicorn-common pthread)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (UNICORN_BUILD_SHARED)
|
|
|
|
add_library(unicorn SHARED
|
|
|
|
${UNICORN_SRCS}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
add_library(unicorn STATIC
|
|
|
|
${UNICORN_SRCS}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} unicorn-common)
|
2019-09-08 11:42:43 +03:00
|
|
|
if (UNICORN_HAS_X86)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_X86)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} x86_64-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_x86 sample_x86_32_gdt_and_seg_regs sample_batch_reg mem_apis shellcode)
|
|
|
|
target_link_libraries(x86_64-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_x86)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_ARM)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_ARM)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} arm-softmmu armeb-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_arm)
|
|
|
|
target_link_libraries(arm-softmmu unicorn-common)
|
|
|
|
target_link_libraries(armeb-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_arm)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_AARCH64)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_ARM64)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} aarch64-softmmu aarch64eb-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_arm64)
|
|
|
|
target_link_libraries(aarch64-softmmu unicorn-common)
|
|
|
|
target_link_libraries(aarch64eb-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_arm64)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_M68K)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_M68K)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} m68k-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_m68k)
|
|
|
|
target_link_libraries(m68k-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_m68k)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_MIPS)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_MIPS -DUNICORN_HAS_MIPSEL -DUNICORN_HAS_MIPS64 -DUNICORN_HAS_MIPS64EL)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_mips)
|
|
|
|
target_link_libraries(mips-softmmu unicorn-common)
|
|
|
|
target_link_libraries(mipsel-softmmu unicorn-common)
|
|
|
|
target_link_libraries(mips64-softmmu unicorn-common)
|
|
|
|
target_link_libraries(mips64el-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_mips)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_SPARC)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_SPARC)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} sparc-softmmu sparc64-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_sparc)
|
|
|
|
target_link_libraries(sparc-softmmu unicorn-common)
|
|
|
|
target_link_libraries(sparc64-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_sparc)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_PPC)
|
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_PPC)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} ppc-softmmu ppc64-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_ppc)
|
|
|
|
target_link_libraries(ppc-softmmu unicorn-common)
|
|
|
|
target_link_libraries(ppc64-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_ppc)
|
|
|
|
endif()
|
|
|
|
if (UNICORN_HAS_RISCV)
|
|
|
|
set(UNICORN_COMPILE_OPTIONS ${UNICORN_COMPILE_OPTIONS} -DUNICORN_HAS_RISCV)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} riscv32-softmmu riscv64-softmmu)
|
|
|
|
set(UNICORN_SAMPLE_FILE ${UNICORN_SAMPLE_FILE} sample_riscv)
|
|
|
|
target_link_libraries(riscv32-softmmu unicorn-common)
|
|
|
|
target_link_libraries(riscv64-softmmu unicorn-common)
|
|
|
|
set(UNICORN_TEST_FILE ${UNICORN_TEST_FILE} test_riscv)
|
2019-09-08 11:42:43 +03:00
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
target_compile_options(unicorn PRIVATE
|
|
|
|
${UNICORN_COMPILE_OPTIONS}
|
2020-05-31 19:00:07 +03:00
|
|
|
)
|
2019-09-08 11:42:43 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
if (MINGW)
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} pthread)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(UNICORN_TARGET_ARCH STREQUAL "riscv")
|
|
|
|
set(UNICORN_LINK_LIBRARIES ${UNICORN_LINK_LIBRARIES} atomic)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
if (UNICORN_BUILD_SHARED)
|
|
|
|
target_compile_options(unicorn PRIVATE
|
|
|
|
-DUNICORN_SHARED
|
|
|
|
)
|
2020-05-31 19:00:07 +03:00
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
target_link_libraries(unicorn
|
|
|
|
${UNICORN_LINK_LIBRARIES}
|
2019-09-08 11:42:43 +03:00
|
|
|
)
|
|
|
|
else()
|
2021-10-03 17:14:44 +03:00
|
|
|
target_link_libraries(unicorn
|
|
|
|
${UNICORN_LINK_LIBRARIES}
|
|
|
|
m
|
|
|
|
)
|
2019-09-08 11:42:43 +03:00
|
|
|
set_target_properties(unicorn PROPERTIES
|
|
|
|
VERSION ${UNICORN_VERSION_MAJOR}
|
|
|
|
SOVERSION ${UNICORN_VERSION_MAJOR}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
if(MSVC)
|
|
|
|
set(SAMPLES_LIB
|
|
|
|
unicorn
|
|
|
|
)
|
2021-10-05 23:42:44 +03:00
|
|
|
elseif(NOT ANDROID_ABI)
|
2021-10-03 17:14:44 +03:00
|
|
|
set(SAMPLES_LIB
|
|
|
|
unicorn
|
|
|
|
pthread
|
|
|
|
)
|
2021-10-05 23:42:44 +03:00
|
|
|
else()
|
|
|
|
set(SAMPLES_LIB
|
|
|
|
unicorn
|
|
|
|
)
|
2021-10-03 17:14:44 +03:00
|
|
|
endif()
|
2019-09-08 11:42:43 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
foreach(SAMPLE_FILE ${UNICORN_SAMPLE_FILE})
|
|
|
|
add_executable(${SAMPLE_FILE}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/samples/${SAMPLE_FILE}.c
|
|
|
|
)
|
|
|
|
target_link_libraries(${SAMPLE_FILE}
|
|
|
|
${SAMPLES_LIB}
|
|
|
|
)
|
|
|
|
endforeach(SAMPLE_FILE)
|
2021-03-30 18:32:56 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
foreach(TEST_FILE ${UNICORN_TEST_FILE})
|
|
|
|
add_executable(${TEST_FILE}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tests/unit/${TEST_FILE}.c
|
|
|
|
)
|
|
|
|
target_link_libraries(${TEST_FILE}
|
|
|
|
${SAMPLES_LIB}
|
|
|
|
)
|
|
|
|
add_test(${TEST_FILE} ${TEST_FILE})
|
|
|
|
endforeach(TEST_FILE)
|
2021-03-30 18:32:56 +03:00
|
|
|
|
2019-09-08 11:42:43 +03:00
|
|
|
|
2021-10-03 17:14:44 +03:00
|
|
|
if(NOT MSVC)
|
2019-09-08 11:42:43 +03:00
|
|
|
include("GNUInstallDirs")
|
|
|
|
file(GLOB UNICORN_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/unicorn/*.h)
|
|
|
|
install(TARGETS unicorn
|
|
|
|
RUNTIME DESTINATION bin
|
2020-06-05 05:27:41 +03:00
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
2019-09-08 11:42:43 +03:00
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
)
|
|
|
|
install(FILES ${UNICORN_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/unicorn)
|
|
|
|
file(WRITE ${CMAKE_BINARY_DIR}/unicorn.pc "Name: unicorn\n\
|
|
|
|
Description: Unicorn emulator engine\n\
|
|
|
|
Version: ${UNICORN_VERSION_MAJOR}.${UNICORN_VERSION_MINOR}.${UNICORN_VERSION_PATCH}\n\
|
|
|
|
libdir=${CMAKE_INSTALL_FULL_LIBDIR}\n\
|
|
|
|
includedir=${CMAKE_INSTALL_FULL_INCLUDEDIR}\n\
|
|
|
|
Libs: -L\$\{libdir\} -lunicorn\n\
|
|
|
|
Cflags: -I\$\{includedir\}\n"
|
|
|
|
)
|
|
|
|
install(FILES ${CMAKE_BINARY_DIR}/unicorn.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
|
|
endif()
|