commit 1b0c9d2577ee8c54678e1fc1fea7607cd2eaf757 parent e9853343a8f1162469fef1f646919458a7fa41f3 Author: vaplv <vaplv@free.fr> Date: Sun, 26 Jun 2022 19:09:54 +0200 Replance the -O2 compilation option by -O3 Diffstat:
| M | config.mk | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.mk b/config.mk @@ -4,7 +4,7 @@ PREFIX = /usr/local CPPFLAGS = -DNDEBUG WFLAGS = -Wall -Wextra -Wmissing-declarations -Wmissing-prototypes -Wconversion -Wshadow -CFLAGS = -O2 -std=c89 -pedantic -fPIC -fvisibility=hidden -fstrict-aliasing -Wl,--no-undefined $(WFLAGS) $(CPPFLAGS) +CFLAGS = -O3 -std=c89 -pedantic -fPIC -fvisibility=hidden -fstrict-aliasing -Wl,--no-undefined $(WFLAGS) $(CPPFLAGS) LDFLAGS = -shared -ldl -lpthread -lm CC = cc