From 32a5f3a60181c8e2b78144e8b433856cfb620a0f Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Sun, 4 Jun 2023 17:35:56 +0300 Subject: [PATCH] Had unintentionally committed the Makefile with -Ofast enabled --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a3df17e64..28548f7e9 100644 --- a/Makefile +++ b/Makefile @@ -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 =