From feada0b31cbdd55c1da0ce85d6d269e55fa1bde3 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 24 Mar 2024 08:10:40 +0000 Subject: [PATCH] Add -O3 to compile flags --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index 477b85e..51d2ff9 100755 --- a/compile +++ b/compile @@ -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)