Had unintentionally committed the Makefile with -Ofast enabled
This commit is contained in:
parent
431693cb10
commit
32a5f3a601
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -40,8 +40,9 @@ endif
|
||||||
#
|
#
|
||||||
|
|
||||||
# keep standard at C11 and C++11
|
# keep standard at C11 and C++11
|
||||||
OPT = -Ofast
|
# -Ofast tends to produce faster code, but may not be available for some compilers.
|
||||||
#OPT = -O3
|
#OPT = -Ofast
|
||||||
|
OPT = -O3
|
||||||
CFLAGS = -I. $(OPT) -std=c11 -fPIC
|
CFLAGS = -I. $(OPT) -std=c11 -fPIC
|
||||||
CXXFLAGS = -I. -I./examples $(OPT) -std=c++11 -fPIC
|
CXXFLAGS = -I. -I./examples $(OPT) -std=c++11 -fPIC
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue