From a0df943aa25646f4e5b15f9eb575e9642a558dda Mon Sep 17 00:00:00 2001 From: Brandon Weng <18161326+BrandonWeng@users.noreply.github.com> Date: Mon, 3 Jul 2023 09:57:21 -0400 Subject: [PATCH] Turn on race detector --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 284e3b45f..6227d7483 100644 --- a/Makefile +++ b/Makefile @@ -58,8 +58,8 @@ endif ldflags += $(LDFLAGS) ldflags := $(strip $(ldflags)) -# BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' -race -BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' +BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' -race +# BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' #### Command List ####