We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b3518f5 + 7cc2228 commit e676179Copy full SHA for e676179
Makefile
@@ -31,7 +31,7 @@ install-tools:
31
32
.PHONY: test
33
test:
34
- GO111MODULE=on go test -coverprofile=$(COVER_PROFILE) $(if $(JSON_OUTPUT),-json,) ./...
+ CGO_ENABLED=1 CGO_CFLAGS="-O2 -D__BLST_PORTABLE__ -std=gnu11" GO111MODULE=on go test -coverprofile=$(COVER_PROFILE) $(if $(JSON_OUTPUT),-json,) ./...
35
36
.PHONY: test-e2e-emulator
37
test-e2e-emulator:
@@ -53,7 +53,7 @@ ci: install-tools generate test coverage
53
54
$(BINARY):
55
CGO_ENABLED=1 \
56
- CGO_CFLAGS="-O2 -D__BLST_PORTABLE__" \
+ CGO_CFLAGS="-O2 -D__BLST_PORTABLE__ -std=gnu11" \
57
GO111MODULE=on go build \
58
-trimpath \
59
-ldflags \
0 commit comments