The latest version of DRAMSys required several API changes which were applied in this commit. Also, the README for the usage of DRAMSys has been updated. The updated version fixes a bug in DRAMSys that caused some full-system simulations to loop endlessly. GitHub Issue: https://github.com/gem5/gem5/issues/1452
9 lines
273 B
CMake
9 lines
273 B
CMake
if (NOT SystemCLanguage_FOUND)
|
|
add_library(systemc INTERFACE)
|
|
|
|
target_include_directories(systemc INTERFACE "${SCONS_SOURCE_DIR}/src/systemc/ext/systemc_home/include")
|
|
|
|
add_library(SystemC::systemc ALIAS systemc)
|
|
|
|
set(SystemCLanguage_FOUND TRUE)
|
|
endif() |