From e7212b939d16e877c3e540fddb195c00dd032c4e Mon Sep 17 00:00:00 2001 From: CPunch Date: Sat, 26 Dec 2020 22:03:14 -0600 Subject: [PATCH] Makefile now specifies C11 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 50cd723..7a995df 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # make clean && make && ./bin/cosmo CC=clang -CFLAGS=-fPIE -Wall -O3 +CFLAGS=-fPIE -Wall -O3 -std=c11 LDFLAGS=#-fsanitize=address OUT=bin/cosmo