Skip to content

Commit 40678a3

Browse files
author
Daniel Kroening
authored
Merge pull request #514 from NathanJPhillips/feature/config-easier-to-modify
Made config more easilly customisable
2 parents b370e7c + 3d0220b commit 40678a3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/config.inc

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Build platform (use one of AUTO, Unix, OSX_Universal, MSVC, Cygwin, MinGW)
22
BUILD_ENV = AUTO
33

4-
# Variables you may want to override
5-
#CXXFLAGS = -Wall -O0 -g -Werror -Wno-long-long -Wno-sign-compare -Wno-parentheses -Wno-strict-aliasing -pedantic
6-
#CXXFLAGS = -std=c++11
4+
# Enable all warnings
5+
#CXXFLAGS += -Wall -Wno-long-long -Wno-sign-compare -Wno-parentheses -Wno-strict-aliasing -pedantic
6+
7+
# Treat warnings as errors
8+
#CXXFLAGS += -Werror
9+
10+
# Select optimisation or debug info
11+
#CXXFLAGS += -O2 -DNDEBUG
12+
#CXXFLAGS += -O0 -g
713

814
# If GLPK is available; this is used by goto-instrument and musketeer.
915
#LIB_GLPK = -lglpk

0 commit comments

Comments
 (0)