From bee7f6d22b255559121d44e584d30f1b494e2278 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 22:53:57 +0000 Subject: [PATCH] build: add ThreadSanitizer flag to CFLAGS --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index f5eb4ed..bc5f480 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -Wextra -std=c99 -D_POSIX_C_SOURCE=200809L -I. -Ilib +CFLAGS = -Wall -Wextra -std=c99 -D_POSIX_C_SOURCE=200809L -I. -Ilib -fsanitize=thread LDFLAGS = -ljack -lm -lncurses -lpthread all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io