Had unintentionally committed the Makefile with -Ofast enabled

This commit is contained in:
Iwan Kawrakow 2023-06-04 17:35:56 +03:00
parent 431693cb10
commit 32a5f3a601

View file

@ -40,8 +40,9 @@ endif
#
# keep standard at C11 and C++11
OPT = -Ofast
#OPT = -O3
# -Ofast tends to produce faster code, but may not be available for some compilers.
#OPT = -Ofast
OPT = -O3
CFLAGS = -I. $(OPT) -std=c11 -fPIC
CXXFLAGS = -I. -I./examples $(OPT) -std=c++11 -fPIC
LDFLAGS =