Skip to content

Commit

Permalink
Merge pull request BVLC#9 from andrewkae/DEV-28294
Browse files Browse the repository at this point in the history
DEV-28294: Modify Makefile to include c++11
  • Loading branch information
Andrew Kae authored Aug 14, 2017
2 parents 159d7b7 + a344a17 commit 70ce18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,10 @@ endif

# Debugging
ifeq ($(DEBUG), 1)
COMMON_FLAGS += -DDEBUG -g -O0
COMMON_FLAGS += -DDEBUG -g -O0 -std=c++11
NVCCFLAGS += -G
else
COMMON_FLAGS += -DNDEBUG -O2
COMMON_FLAGS += -DNDEBUG -O2 -std=c++11
endif

# cuDNN acceleration configuration.
Expand Down

0 comments on commit 70ce18a

Please sign in to comment.