Skip to content

Commit cda2340

Browse files
author
Shriram Rajagopalan
committed
make file updates
Signed-off-by: Shriram Rajagopalan <[email protected]>
1 parent ce5b6d1 commit cda2340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ GMAKE = make mode=$(mode)
3636
NAME := sqlparser
3737
PARSER_CPP = $(SRCPARSER)/bison_parser.cpp $(SRCPARSER)/flex_lexer.cpp
3838
PARSER_H = $(SRCPARSER)/bison_parser.h $(SRCPARSER)/flex_lexer.h
39-
LIB_CFLAGS = -std=c++1z -Wall -Werror $(OPT_FLAG)
39+
LIB_CFLAGS = -std=c++11 -Wall -Werror $(OPT_FLAG)
4040

4141
static ?= no
4242
ifeq ($(static), yes)
@@ -120,7 +120,7 @@ $(BM_BUILD): $(BM_ALL) $(LIB_BUILD)
120120
############ Test & Example ############
121121
########################################
122122
TEST_BUILD = $(BIN)/tests
123-
TEST_CFLAGS = -std=c++1z -Wall -Werror -Isrc/ -Itest/ -L./ $(OPT_FLAG)
123+
TEST_CFLAGS = -std=c++11 -Wall -Isrc/ -Itest/ -L./ $(OPT_FLAG)
124124
TEST_CPP = $(shell find test/ -name '*.cpp')
125125
TEST_ALL = $(shell find test/ -name '*.cpp') $(shell find test/ -name '*.h')
126126
EXAMPLE_SRC = $(shell find example/ -name '*.cpp') $(shell find example/ -name '*.h')

0 commit comments

Comments
 (0)