updates build system to cope better with CentOS
Interp architectural test suite / Setup and build ISS (push) Failing after 2m23s Details
Interp architectural test suite / Test interp backend (push) Failing after 1m6s Details
Interp architectural test suite / Test llvm backend (push) Failing after 1m14s Details
Interp architectural test suite / Test asmjit backend (push) Has been cancelled Details
Interp architectural test suite / Test tcc backend (push) Has been cancelled Details

This commit is contained in:
Eyck Jentzsch 2024-03-24 13:45:29 +01:00
parent 6ef27d8c58
commit 6c304055bf
1 changed files with 222 additions and 210 deletions

View File

@ -5,228 +5,240 @@ project(TGC-ISS VERSION 1.0.0 LANGUAGES CXX)
set(WITH_LLVM FALSE CACHE BOOL "Build LLVM based backend") set(WITH_LLVM FALSE CACHE BOOL "Build LLVM based backend")
if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS") if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS")
########################################################################### ###########################################################################
# stand alone build settings # stand alone build settings
########################################################################### ###########################################################################
set(CORE_NAME TGC5C CACHE STRING "The core to build the ISS for" ) set(CORE_NAME TGC5C CACHE STRING "The core to build the ISS for" )
option(FW_BUILD "Enable the automatic download and build of some firmware to run on the ISS" OFF) option(FW_BUILD "Enable the automatic download and build of some firmware to run on the ISS" OFF)
option(ENABLE_SANITIZER "Enable address sanitizer" OFF) option(ENABLE_SANITIZER "Enable address sanitizer" OFF)
option(ENABLE_CLANG_TIDY "Add clang-tidy and clang-format automatically to builds" OFF) option(ENABLE_CLANG_TIDY "Add clang-tidy and clang-format automatically to builds" OFF)
option(WITH_TCC "Build TCC backend" ON) option(WITH_TCC "Build TCC backend" ON)
option(WITH_LLVM "Build LLVM backend" OFF) option(WITH_LLVM "Build LLVM backend" OFF)
option(WITH_ASMJIT "Build ASMJIT backend" ON) option(WITH_ASMJIT "Build ASMJIT backend" ON)
set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON) set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
set(CMAKE_INSTALL_RPATH "${ORIGIN}") set(CMAKE_INSTALL_RPATH "${ORIGIN}")
include(CheckCXXCompilerFlag) include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE) CHECK_CXX_COMPILER_FLAG("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE)
if(COMPILER_SUPPORTS_MARCH_NATIVE) if(COMPILER_SUPPORTS_MARCH_NATIVE)
if("${CMAKE_BUILD_TYPE}" STREQUAL "") if("${CMAKE_BUILD_TYPE}" STREQUAL "")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
elseif(NOT(${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) elseif(NOT(${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo"))
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
endif() endif()
endif() endif()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(warnings "-Wall -Wextra -Werror") set(warnings "-Wall -Wextra -Werror")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG") set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG") set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG")
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
set(warnings "/W4 /WX /EHsc") set(warnings "/W4 /WX /EHsc")
endif() endif()
if(ENABLE_SANITIZER) if(ENABLE_SANITIZER)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
endif() endif()
include(GNUInstallDirs) include(GNUInstallDirs)
include(ConanInline) include(ConanInline)
if(BUILD_SHARED_LIBS) if(BUILD_SHARED_LIBS)
set(SHARED_FLAG "True") set(SHARED_FLAG "True")
else() else()
set(SHARED_FLAG "False") set(SHARED_FLAG "False")
endif() endif()
set(CONAN_BOOST_OPTIONS set(CONAN_BOOST_OPTIONS
boost:fPIC=True boost:fPIC=True
boost:shared=False boost:shared=False
boost:header_only=False boost:header_only=False
boost:without_contract=True boost:without_contract=True
boost:without_graph=True boost:without_graph=True
boost:without_graph_parallel=True boost:without_graph_parallel=True
boost:without_iostreams=True boost:without_iostreams=True
boost:without_json=True boost:without_json=True
boost:without_locale=True boost:without_locale=True
boost:without_log=True boost:without_log=True
boost:without_math=True boost:without_math=True
boost:without_mpi=True boost:without_mpi=True
boost:without_nowide=True boost:without_nowide=True
boost:without_python=True boost:without_python=True
boost:without_random=True boost:without_random=True
boost:without_regex=True boost:without_regex=True
boost:without_stacktrace=True boost:without_stacktrace=True
boost:without_test=True boost:without_test=True
boost:without_timer=True boost:without_timer=True
boost:without_type_erasure=True boost:without_type_erasure=True
boost:without_wave=True boost:without_wave=True
) )
set(B2_VERSION 4.9.6) set(B2_VERSION 4.9.6)
set(CM_VERSION 3.20.5) set(CM_VERSION 3.20.5)
set(CONAN_PACKAGE_LIST set(LLVM_VERSION 13.0.0)
fmt/8.0.1 set(CONAN_PACKAGE_LIST
spdlog/1.9.2 fmt/8.0.1
boost/1.75.0 spdlog/1.9.2
gsl-lite/0.37.0 boost/1.75.0
elfio/3.8 gsl-lite/0.37.0
lz4/1.9.3 elfio/3.8
yaml-cpp/0.7.0 lz4/1.9.3
jsoncpp/1.9.5 yaml-cpp/0.7.0
zlib/1.2.13 jsoncpp/1.9.5
) zlib/1.2.13
set(CONAN_PACKAGE_OPTIONS fmt:header_only=True ${CONAN_BOOST_OPTIONS}) )
set(CONAN_PACKAGE_OPTIONS fmt:header_only=True ${CONAN_BOOST_OPTIONS})
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
list(APPEND CONAN_PACKAGE_LIST tcc/0.9.27) list(APPEND CONAN_PACKAGE_LIST tcc/0.9.27)
option(WITH_TCC "Build TCC backend" ON) option(WITH_TCC "Build TCC backend" ON)
endif() endif()
if(WITH_LLVM) if(WITH_LLVM)
list(APPEND CONAN_PACKAGE_LIST llvm-core/13.0.0) list(APPEND CONAN_PACKAGE_LIST llvm-core/${LLVM_VERSION})
list(APPEND CONAN_PACKAGE_OPTIONS libiconv:shared=True) list(APPEND CONAN_PACKAGE_OPTIONS libiconv:shared=True)
endif() endif()
if(WITH_ASMJIT) if(WITH_ASMJIT)
list(APPEND CONAN_PACKAGE_LIST asmjit/cci.20230325) list(APPEND CONAN_PACKAGE_LIST asmjit/cci.20230325)
list(APPEND CONAN_PACKAGE_OPTIONS asmjit:shared=False) list(APPEND CONAN_PACKAGE_OPTIONS asmjit:shared=False)
endif() endif()
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dbt-rise-plugins) if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dbt-rise-plugins)
list(APPEND CONAN_PACKAGE_OPTIONS lua:compile_as_cpp=False) list(APPEND CONAN_PACKAGE_OPTIONS lua:compile_as_cpp=False)
list(APPEND CONAN_PACKAGE_LIST lua/5.4.3) list(APPEND CONAN_PACKAGE_LIST lua/5.4.3)
endif() endif()
conan_check() conan_check()
conan_add_remote(NAME minres URL https://git.minres.com/api/packages/Tooling/conan) conan_add_remote(NAME minres URL https://git.minres.com/api/packages/Tooling/conan)
########################################################################### ###########################################################################
# Boost on CentOS 7 quirks: the b2 of conan-center is build against a newer libstdc++ and therefore does not run # Boost on CentOS 7 quirks: the b2 of conan-center is build against a newer libstdc++ and therefore does not run
# with the oooooold libs on CentOS 7. Therefore we build our own version of b2 if it is not there # with the oooooold libs on CentOS 7. Therefore we build our own version of b2 if it is not there
########################################################################### ###########################################################################
set(B2_META $ENV{HOME}/.conan/data/b2/${B2_VERSION}/_/_/metadata.json) find_program(LSB_RELEASE_EXEC lsb_release)
set(CM_META $ENV{HOME}/.conan/data/cmake/${CM_VERSION}/_/_/metadata.json) if(NOT LSB_RELEASE_EXEC-NOTFOUND)
if(DEFINED ENV{CONAN_USER_HOME}) execute_process(COMMAND "${LSB_RELEASE_EXEC}" --short --id OUTPUT_VARIABLE LSB_RELEASE_ID_SHORT OUTPUT_STRIP_TRAILING_WHITESPACE)
set(B2_META $ENV{CONAN_USER_HOME}/.conan/data/b2/${B2_VERSION}/_/_/metadata.json) if(LSB_RELEASE_ID_SHORT MATCHES "CentOS")
set(CMAKE_META $ENV{CONAN_USER_HOME}/.conan/data/cmake/${CM_VERSION}/_/_/metadata.json) set(B2_META $ENV{HOME}/.conan/data/b2/${B2_VERSION}/_/_/metadata.json)
endif() set(CM_META $ENV{HOME}/.conan/data/cmake/${CM_VERSION}/_/_/metadata.json)
if(NOT EXISTS ${B2_META}) set(LLVM_META $ENV{HOME}/.conan/data/llvm-core/${LLVM_VERSION}/_/_/metadata.json)
conan_configure(REQUIRES b2/${B2_VERSION}) if(DEFINED ENV{CONAN_USER_HOME})
conan_cmake_autodetect(settings BUILD_TYPE Release) set(B2_META $ENV{CONAN_USER_HOME}/.conan/data/b2/${B2_VERSION}/_/_/metadata.json)
conan_cmake_install(PATH_OR_REFERENCE . BUILD b2 SETTINGS ${settings}) set(CMAKE_META $ENV{CONAN_USER_HOME}/.conan/data/cmake/${CM_VERSION}/_/_/metadata.json)
endif() endif()
if(NOT EXISTS ${CM_META}) if(NOT EXISTS ${B2_META})
conan_configure(REQUIRES cmake/${CM_VERSION}) conan_configure(REQUIRES b2/${B2_VERSION})
conan_cmake_autodetect(settings BUILD_TYPE Release) conan_cmake_autodetect(settings BUILD_TYPE Release)
conan_cmake_install(PATH_OR_REFERENCE . BUILD cmake SETTINGS ${settings}) conan_cmake_install(PATH_OR_REFERENCE . BUILD b2 SETTINGS ${settings})
endif() endif()
########################################################################### if(NOT EXISTS ${CM_META})
# Boost on CentOS 7 quirks end conan_configure(REQUIRES cmake/${CM_VERSION})
########################################################################### conan_cmake_autodetect(settings BUILD_TYPE Release)
conan_cmake_configure(REQUIRES ${CONAN_PACKAGE_LIST} conan_cmake_install(PATH_OR_REFERENCE . BUILD cmake SETTINGS ${settings})
GENERATORS cmake_find_package endif()
OPTIONS ${CONAN_PACKAGE_OPTIONS} if(NOT EXISTS ${LLVM_META})
) conan_configure(REQUIRES llvm-core/13.0.0)
conan_cmake_autodetect(settings) conan_cmake_autodetect(settings BUILD_TYPE Release)
conan_install() conan_cmake_install(PATH_OR_REFERENCE . BUILD llvm-core SETTINGS ${settings})
set(CONAN_CMAKE_SILENT_OUTPUT ON) endif()
endif()
find_package(fmt) endif()
find_package(spdlog) ###########################################################################
find_package(lz4) # Boost on CentOS 7 quirks end
find_package(gsl-lite) ###########################################################################
find_package(yaml-cpp) conan_cmake_configure(REQUIRES ${CONAN_PACKAGE_LIST}
set(Boost_NO_BOOST_CMAKE ON) # Don't do a find_package in config mode before searching for a regular boost install. GENERATORS cmake_find_package
set(BOOST_ROOT ${CONAN_BOOST_ROOT}) OPTIONS ${CONAN_PACKAGE_OPTIONS}
find_package(Threads) )
find_package(ZLIB) conan_cmake_autodetect(settings)
conan_install()
if(USE_CWR_SYSTEMC) set(CONAN_CMAKE_SILENT_OUTPUT ON)
include(SystemCPackage)
endif() find_package(fmt)
############################################################################### find_package(spdlog)
# setup clang-format and clang-tidy find_package(lz4)
############################################################################### find_package(gsl-lite)
if (ENABLE_CLANG_TIDY) find_package(yaml-cpp)
set(CLANG_FORMAT_EXCLUDE_PATTERNS "scc" "install") set(Boost_NO_BOOST_CMAKE ON) # Don't do a find_package in config mode before searching for a regular boost install.
find_package(ClangFormat) set(BOOST_ROOT ${CONAN_BOOST_ROOT})
find_program (CLANG_TIDY_EXE NAMES "clang-tidy" PATHS /usr/bin ) find_package(Threads)
if (CLANG_TIDY_EXE) find_package(ZLIB)
message(STATUS "clang-tidy found: ${CLANG_TIDY_EXE}")
set(CLANG_TIDY_CHECKS "-*") if(USE_CWR_SYSTEMC)
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-avoid-bind.PermissiveParameterList") include(SystemCPackage)
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-loop-convert.*") endif()
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-make-shared.") ###############################################################################
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-make-unique.") # setup clang-format and clang-tidy
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-pass-by-value.*") ###############################################################################
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-raw-string-literal.*") if (ENABLE_CLANG_TIDY)
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-auto-ptr.IncludeStyle") set(CLANG_FORMAT_EXCLUDE_PATTERNS "scc" "install")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-disallow-copy-and-assign-macro.MacroName") find_package(ClangFormat)
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-random-shuffle.IncludeStyle") find_program (CLANG_TIDY_EXE NAMES "clang-tidy" PATHS /usr/bin )
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-auto.*") if (CLANG_TIDY_EXE)
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-bool-literals.IgnoreMacros") message(STATUS "clang-tidy found: ${CLANG_TIDY_EXE}")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-default-member-init.*") set(CLANG_TIDY_CHECKS "-*")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-emplace.*") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-avoid-bind.PermissiveParameterList")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-equals-default.IgnoreMacros") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-loop-convert.*")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-equals-delete.IgnoreMacros") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-make-shared.")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-nodiscard.ReplacementString") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-make-unique.")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-noexcept.*") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-pass-by-value.*")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-nullptr.NullMacros") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-raw-string-literal.*")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-override.*") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-auto-ptr.IncludeStyle")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-transparent-functors.SafeMode") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-disallow-copy-and-assign-macro.MacroName")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-using.IgnoreMacros") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-replace-random-shuffle.IncludeStyle")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-auto.*")
#set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},cppcoreguidelines-*") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-bool-literals.IgnoreMacros")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},clang-diagnostic-*,clang-analyzer-*") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-default-member-init.*")
set(DO_CLANG_TIDY "${CLANG_TIDY_EXE};-checks=${CLANG_TIDY_CHECKS};-header-filter='${CMAKE_SOURCE_DIR}/*';-fix" set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-emplace.*")
CACHE STRING "" FORCE) set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-equals-default.IgnoreMacros")
else() set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-equals-delete.IgnoreMacros")
message(WARNING "clang-tidy not found!") set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-nodiscard.ReplacementString")
set(CMAKE_CXX_CLANG_TIDY "" CACHE STRING "" FORCE) # delete it set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-noexcept.*")
endif() set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-nullptr.NullMacros")
endif() set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-override.*")
set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-transparent-functors.SafeMode")
if(FW_BUILD) set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},modernize-use-using.IgnoreMacros")
include(FetchContent) set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors")
set(FETCHCONTENT_BASE_DIR ${CMAKE_CURRENT_BINARY_DIR}/..) #set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},cppcoreguidelines-*")
FetchContent_Declare( set(CLANG_TIDY_CHECKS "${CLANG_TIDY_CHECKS},clang-diagnostic-*,clang-analyzer-*")
riscvfw set(DO_CLANG_TIDY "${CLANG_TIDY_EXE};-checks=${CLANG_TIDY_CHECKS};-header-filter='${CMAKE_SOURCE_DIR}/*';-fix"
GIT_REPOSITORY https://git.minres.com/Firmware/Firmwares.git CACHE STRING "" FORCE)
GIT_TAG main else()
GIT_SHALLOW OFF message(WARNING "clang-tidy not found!")
UPDATE_DISCONNECTED ON set(CMAKE_CXX_CLANG_TIDY "" CACHE STRING "" FORCE) # delete it
) endif()
FetchContent_GetProperties(riscvfw) endif()
if(NOT riscvfw_POPULATED)
FetchContent_Populate(riscvfw) if(FW_BUILD)
endif() include(FetchContent)
add_subdirectory(${riscvfw_SOURCE_DIR}) set(FETCHCONTENT_BASE_DIR ${CMAKE_CURRENT_BINARY_DIR}/..)
endif() FetchContent_Declare(
riscvfw
GIT_REPOSITORY https://git.minres.com/Firmware/Firmwares.git
GIT_TAG main
GIT_SHALLOW OFF
UPDATE_DISCONNECTED ON
)
FetchContent_GetProperties(riscvfw)
if(NOT riscvfw_POPULATED)
FetchContent_Populate(riscvfw)
endif()
add_subdirectory(${riscvfw_SOURCE_DIR})
endif()
endif() endif()
add_subdirectory(dbt-rise-core) add_subdirectory(dbt-rise-core)
if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS" AND NOT USE_CWR_SYSTEMC) if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS" AND NOT USE_CWR_SYSTEMC)
set(SCC_CMAKE_CONFIG_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/scc) set(SCC_CMAKE_CONFIG_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/scc)
add_subdirectory(scc/src/common) add_subdirectory(scc/src/common)
else() else()
add_subdirectory(scc) add_subdirectory(scc)
endif() endif()
add_subdirectory(dbt-rise-tgc) add_subdirectory(dbt-rise-tgc)
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dbt-rise-plugins) if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/dbt-rise-plugins)
add_subdirectory(dbt-rise-plugins) add_subdirectory(dbt-rise-plugins)
endif() endif()
include(CTest) include(CTest)