From 9cd8ee8579ef146e538f210fbcf575271115efe6 Mon Sep 17 00:00:00 2001 From: felsabbagh3 Date: Tue, 11 Jun 2019 23:21:48 -0700 Subject: [PATCH] Added std=c++11 --- rtl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/Makefile b/rtl/Makefile index ce54a935..1a6e41fc 100644 --- a/rtl/Makefile +++ b/rtl/Makefile @@ -5,7 +5,7 @@ all: RUNFILE VERILATOR: - verilator -Wall -cc Vortex.v --exe test_bench.cpp + verilator -Wall -cc Vortex.v --exe test_bench.cpp -CFLAGS std=c++11 RUNFILE: VERILATOR (cd obj_dir && make -j -f VVortex.mk)