Skip to content

Commit 35cf16e

Browse files
authored
Merge pull request #432 from goekce/master
Verilator requires at least c++14
2 parents bd9e062 + 67b2e94 commit 35cf16e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/cpp/briey/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ run: compile
4848
verilate: ../../../../Briey.v
4949
rm -f Briey.v*.bin
5050
cp ../../../../Briey.v*.bin . | true
51-
verilator -cc ../../../../Briey.v -CFLAGS -std=c++11 ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
51+
verilator -cc ../../../../Briey.v ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
5252

5353
compile: verilate
5454
make -j -C obj_dir/ -f VBriey.mk VBriey

src/test/cpp/murax/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ run: compile
3131
verilate: ../../../../Murax.v
3232
rm -f Murax.v*.bin
3333
cp ../../../../Murax.v*.bin . | true
34-
verilator -I../../../.. -cc ../../../../Murax.v -CFLAGS -std=c++11 ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
34+
verilator -I../../../.. -cc ../../../../Murax.v ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-WIDTH -Wno-UNOPTFLAT --x-assign unique --exe main.cpp
3535

3636
compile: verilate
3737
make -j -C obj_dir/ -f VMurax.mk VMurax

src/test/cpp/regression/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ run: compile
350350

351351
verilate: ${VEXRISCV_FILE}
352352
cp ${VEXRISCV_FILE}*.bin . | true
353-
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
353+
verilator -cc ${VEXRISCV_FILE} -O3 -LDFLAGS -pthread ${ADDCFLAGS} --gdbbt ${VERILATOR_ARGS} -Wno-UNOPTFLAT -Wno-WIDTH --x-assign unique --exe main.cpp
354354

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

0 commit comments

Comments
 (0)