From 38115772ff49bffe6d428c857ca345ee1087a5e7 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 22 Oct 2024 20:26:04 +0200 Subject: Use `-race` for debug runs This option for the go tool activates a race condition detector. It makes building the executable slower. Nevertheless it is worth it since it detects a lot of race conditions and race conditions should be avoided as much as possible. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d90b0fb..b9d5d51 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ $(BUILD_DIR)/$(TARGET_EXEC): .PHONY: debug debug: - go run -ldflags "-X main.version=$(VERSION)" $(MODULE_NAME) -e + go run -race -ldflags "-X main.version=$(VERSION)" $(MODULE_NAME) -e .PHONY: tests tests: -- cgit v1.2.3-70-g09d2