Skip to content

Commit

Permalink
Add C++11 compile flags
Browse files Browse the repository at this point in the history
  • Loading branch information
fbreitwieser committed Jun 7, 2018
1 parent 40f55f2 commit 48022c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -162,9 +162,9 @@ ifeq (64,$(BITS))
endif
SSE_FLAG=-msse2

DEBUG_FLAGS = -O0 -g3 $(BIToS_FLAG) $(SSE_FLAG)
DEBUG_FLAGS = -O0 -g3 $(BIToS_FLAG) $(SSE_FLAG) -std=c++11
DEBUG_DEFS = -DCOMPILER_OPTIONS="\"$(DEBUG_FLAGS) $(EXTRA_FLAGS)\""
RELEASE_FLAGS = -O3 $(BITS_FLAG) $(SSE_FLAG) -funroll-loops -g3
RELEASE_FLAGS = -O3 $(BITS_FLAG) $(SSE_FLAG) -funroll-loops -g3 -std=c++11
RELEASE_DEFS = -DCOMPILER_OPTIONS="\"$(RELEASE_FLAGS) $(EXTRA_FLAGS)\""
NOASSERT_FLAGS = -DNDEBUG
FILE_FLAGS = -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Expand Down

0 comments on commit 48022c4

Please sign in to comment.