Add -O3 to compile flags

This commit is contained in:
Abdelrahman Said 2024-03-24 08:10:40 +00:00
parent 0c07437ef2
commit feada0b31c

View File

@ -12,7 +12,7 @@ SRC="\
dstr/src/*.c \
mem/src/*/*.c \
"
CFLAGS="-shared -fPIC -Wall -Werror -pedantic"
CFLAGS="-O3 -shared -fPIC -Wall -Werror -pedantic"
OUT="libwapp.so"
(set -x ; $CC $CFLAGS $INCLUDE $SRC -o $OUT)