Skip to content

Commit

Permalink
Verilator requires at least c++14
Browse files Browse the repository at this point in the history
  • Loading branch information
goekce committed Oct 21, 2024
1 parent bd9e062 commit 901a991
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/test/cpp/briey/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ run: compile
verilate: ../../../../Briey.v
rm -f Briey.v*.bin
cp ../../../../Briey.v*.bin . | true
verilator -cc ../../../../Briey.v -CFLAGS -std=c++11 ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
verilator -cc ../../../../Briey.v ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp

compile: verilate
make -j -C obj_dir/ -f VBriey.mk VBriey
Expand Down
2 changes: 1 addition & 1 deletion src/test/cpp/murax/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ run: compile
verilate: ../../../../Murax.v
rm -f Murax.v*.bin
cp ../../../../Murax.v*.bin . | true
verilator -I../../../.. -cc ../../../../Murax.v -CFLAGS -std=c++11 ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
verilator -I../../../.. -cc ../../../../Murax.v ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp

compile: verilate
make -j -C obj_dir/ -f VMurax.mk VMurax
Expand Down
2 changes: 1 addition & 1 deletion src/test/cpp/regression/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ run: compile

verilate: ${VEXRISCV_FILE}
cp ${VEXRISCV_FILE}*.bin . | true
verilator -cc ${VEXRISCV_FILE} -O3 -CFLAGS -std=c++11 -LDFLAGS -pthread ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-UNOPTFLAT -Wno-WIDTH --x-assign unique --exe main.cpp
verilator -cc ${VEXRISCV_FILE} -O3 -LDFLAGS -pthread ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-UNOPTFLAT -Wno-WIDTH --x-assign unique --exe main.cpp

compile: verilate
make -j${THREAD_COUNT} -C obj_dir/ -f VVexRiscv.mk VVexRiscv
Expand Down

0 comments on commit 901a991

Please sign in to comment.