Enforce C11 with GNU extensions on POSIX platforms

This commit is contained in:
Abdelrahman Said 2025-04-20 18:28:17 +01:00
parent b13274cd81
commit 037b0fe698

View File

@ -1,6 +1,6 @@
CC = clang
BUILD_TYPE = debug
CFLAGS = -Wall -Wextra -Werror -pedantic
CFLAGS = -Wall -Wextra -Werror -pedantic -std=gnu11
LIBFLAGS = -fPIC -shared
KERNEL = $(shell uname -s)
MACHINE = $(shell uname -m)