Skip to content

Commit

Permalink
chore: add nostrip compilr flag to attach debug symbols (#7759)
Browse files Browse the repository at this point in the history
* chore: add nostrip compilr flag to attach debug symbols

* updates
  • Loading branch information
p0mvn authored Mar 16, 2024
1 parent ca7c0b8 commit be76d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/makefiles/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ build-dev-install: go.sum

build-dev-build:
mkdir -p $(BUILDDIR)/
GOWORK=off go build $(GC_FLAGS) -mod=readonly -ldflags '$(DEBUG_LDFLAGS)' -trimpath -o $(BUILDDIR) ./...;
GOWORK=off go build $(GC_FLAGS) -mod=readonly -ldflags '$(DEBUG_LDFLAGS)' -gcflags "all=-N -l" -trimpath -o $(BUILDDIR) ./...;

build-install-with-autocomplete: build-check-version go.sum
GOWORK=off go install -mod=readonly $(BUILD_FLAGS) $(GO_MODULE)/cmd/osmosisd
Expand Down

0 comments on commit be76d37

Please sign in to comment.