From fdb0650634ffbf957db369b6dae6626f34056b0b Mon Sep 17 00:00:00 2001 From: Abdelrahman <said.abdelrahman89@gmail.com> Date: Sun, 9 Feb 2025 16:34:12 +0000 Subject: [PATCH] Add -Wextra flag for compilation --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index 75c8ad2..a717db4 100755 --- a/compile +++ b/compile @@ -16,7 +16,7 @@ while [[ $# > 0 ]];do done CC=clang -CFLAGS="-Wall -Werror -pedantic" +CFLAGS="-Wall -Wextra -Werror -pedantic" LIBFLAGS="-fPIC -shared" INCLUDE="$(find src -type d | xargs -I{} echo -n "-I{} ")"