This commit is contained in:
2026-05-27 06:24:36 -07:00
parent 656b3ade80
commit 3ab01575a2
3 changed files with 13 additions and 8 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
# If set to 1, the autograder
BAD_ERROR_REPORTING_FOR_AUTOGRADER=1
#BAD_ERROR_REPORTING_FOR_AUTOGRADER=1
CC=clang
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c23 -D_POSIX_C_SOURCE=200809L -pthread -O2
#CFLAGS+=-Og -g -fsanitize=address,undefined
CFLAGS+=-Og -g -fsanitize=address,undefined
SRCS=main.c threadpool.c util.c server.c http.c
OBJS=$(SRCS:%.c=bin/%.o)