summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cuda-sim/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cuda-sim/Makefile b/src/cuda-sim/Makefile
index 2305ef0..1ce6df0 100644
--- a/src/cuda-sim/Makefile
+++ b/src/cuda-sim/Makefile
@@ -48,7 +48,6 @@ ifeq ($(DEBUG),1)
endif
OPT += -I$(CUDA_INSTALL_PATH)/include -I$(OUTPUT_DIR)/ -I. -I$(SIM_OBJ_FILES_DIR)
OPT += -fPIC
-OPT += std=c++11
ifeq ($(TRACE),1)
OPT += -DTRACING_ON=1
@@ -56,10 +55,10 @@ endif
CXX_OPT = $(OPT)
ifeq ($(INTEL),1)
- CXX_OPT += -std=c++0x
+ CXX_OPT += -std=c++11
else
ifeq ($(GNUC_CPP0X),1)
- CXX_OPT += -std=c++0x
+ CXX_OPT += -std=c++11
endif
endif