File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ GCC=g++
20
20
CLANG =clang
21
21
LLVM_CONFIG =llvm-config
22
22
23
- CFLAGS =-O3 -Wall -Wno-unknown-warning-option -std=c++1y
24
- CFLAGS-DEBUG =-O0 -Wall
23
+ CFLAGS =-O3 -Wall -Wno-unknown-warning-option -std=c++14
24
+ CFLAGS-DEBUG =-O0 -Wall -Wno-unknown-warning-option -std=c++14
25
25
BIN =./bin
26
26
27
27
SUDO =sudo
@@ -37,9 +37,11 @@ all: build
37
37
38
38
build : $(SRCS )
39
39
$(MKBIN ) && $(CC ) $(CFLAGS ) $(SRCS ) $(CONFIG ) -o $(BIN ) /brain
40
+ rm * .dwo
40
41
41
42
build-gcc : $(SRCS )
42
43
$(MKBIN ) && $(GCC ) $(CFLAGS ) $(SRCS ) $(CONFIG ) -o $(BIN ) /brain
44
+ rm * .dwo
43
45
44
46
build-travis : $(SRCS )
45
47
$(MKBIN ) && $(CC ) $(CFLAGS ) -DINCOMPATIBLE_LLVM $(SRCS ) $(CONFIG ) -o $(BIN ) /brain
@@ -54,6 +56,7 @@ build-3.9: all
54
56
55
57
debug : $(SRCS )
56
58
$(MKBIN ) && $(CC ) -g $(CFLAGS-DEBUG ) $(SRCS ) $(CONFIG ) -o $(BIN ) /brain_debug
59
+ mv * .dwo bin/
57
60
58
61
debug-gcc : $(SRCS )
59
62
$(MKBIN ) && $(GCC ) -g $(CFLAGS-DEBUG ) $(SRCS ) $(CONFIG ) -o $(BIN ) /brain_debug
66
69
67
70
install :
68
71
$(MKLIB )
72
+
69
73
.PHONY : tests
You can’t perform that action at this time.
0 commit comments