From 6b3b124a302adbd817292a1897e478488343e14d Mon Sep 17 00:00:00 2001 From: Hyesoon Kim Date: Wed, 12 Jun 2019 07:32:20 -0400 Subject: [PATCH] fix typo of std=c++11 --- rtl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/Makefile b/rtl/Makefile index 1a6e41fc..474e8e4b 100644 --- a/rtl/Makefile +++ b/rtl/Makefile @@ -5,7 +5,7 @@ all: RUNFILE VERILATOR: - verilator -Wall -cc Vortex.v --exe test_bench.cpp -CFLAGS std=c++11 + verilator -Wall -cc Vortex.v --exe test_bench.cpp -CFLAGS -std=c++11 RUNFILE: VERILATOR (cd obj_dir && make -j -f VVortex.mk)