diff options
author | xengineering <me@xengineering.eu> | 2024-10-22 20:26:04 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-22 20:26:04 +0200 |
commit | 38115772ff49bffe6d428c857ca345ee1087a5e7 (patch) | |
tree | 0dd3e2423deae3d793f8e431944805413a2ff036 | |
parent | f175701d9ba499c2df0fdc6a3025c1bcc71b1832 (diff) | |
download | ceres-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |