summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-22 20:26:04 +0200
committerxengineering <me@xengineering.eu>2024-10-22 20:26:04 +0200
commit38115772ff49bffe6d428c857ca345ee1087a5e7 (patch)
tree0dd3e2423deae3d793f8e431944805413a2ff036
parentf175701d9ba499c2df0fdc6a3025c1bcc71b1832 (diff)
downloadceres-38115772ff49bffe6d428c857ca345ee1087a5e7.tar
ceres-38115772ff49bffe6d428c857ca345ee1087a5e7.tar.zst
ceres-38115772ff49bffe6d428c857ca345ee1087a5e7.zip
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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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: