diff options
author | Ren Kararou <[email protected]> | 2025-01-31 14:14:20 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2025-01-31 14:14:20 -0600 |
commit | ed95d5b5e4720f19b960dc31c86ce3d32aa9243b (patch) | |
tree | e5b35fa1c95090b01bb79e0e64b861114602be45 | |
parent | f02932abbb29ccfc5f4ea4c540bc8d6a46cba1de (diff) | |
download | libspicy-ed95d5b5e4720f19b960dc31c86ce3d32aa9243b.tar.gz libspicy-ed95d5b5e4720f19b960dc31c86ce3d32aa9243b.tar.bz2 libspicy-ed95d5b5e4720f19b960dc31c86ce3d32aa9243b.zip |
fix faulty clang option
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile index 3c456a1..414af85 100644 --- a/makefile +++ b/makefile @@ -9,7 +9,7 @@ ifeq ($(shell uname),SunOS) CC = gcc CFLAGS += -std=gnu11 else -CFLAGS += -std=c11 -fsanitize=safe-stack -fcf-protection=[full] +CFLAGS += -std=c11 -fsanitize=safe-stack -fcf-protection=full endif INCLUDES=-Iinc/ |