Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

emu: fix the macro EMU_THREAD for LightSSS #142

Merged
merged 1 commit into from
Sep 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/csrc/verilator/emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ void Emulator::fork_child_init() {
#else
#error Please use Verilator v5.016 or newer versions.
#endif // check VERILATOR_VERSION_INTEGER values
#elif EMU_THREADS > 1 // VERILATOR_VERSION_INTEGER not defined
#elif EMU_THREAD > 1 // VERILATOR_VERSION_INTEGER not defined
#ifdef VERILATOR_4_210 // v4.210 <= version < 4.220
dut_ptr->vlSymsp->__Vm_threadPoolp = new VlThreadPool(dut_ptr->contextp(), EMU_THREAD - 1, 0);
#else // older than v4.210
Expand Down