Skip to content

Commit

Permalink
revert CGO
Browse files Browse the repository at this point in the history
  • Loading branch information
djshow832 committed Sep 28, 2023
1 parent 8486d96 commit ad5db9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cmd: $(EXECUTABLE_TARGETS)
cmd_%: OUTPUT=$(patsubst cmd_%,./bin/%,$@)
cmd_%: SOURCE=$(patsubst cmd_%,./cmd/%,$@)
cmd_%:
CGO_ENABLED=1 go build $(BUILDFLAGS) -o $(OUTPUT) $(SOURCE)
go build $(BUILDFLAGS) -o $(OUTPUT) $(SOURCE)

golangci-lint:
GOBIN=$(GOBIN) go install github.com/golangci/golangci-lint/cmd/[email protected]
Expand All @@ -68,7 +68,7 @@ tidy:

build:
cd lib && go build ./...
CGO_ENABLED=1 go build ./...
go build ./...

metrics:
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
Expand Down

0 comments on commit ad5db9d

Please sign in to comment.