Skip to content

Commit ea1170f

Browse files
committed
WIP
1 parent 6f2cbfc commit ea1170f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ current_platform := $(shell go env GOOS)/$(shell go env GOARCH)
88
# Go's supported platforms pulled from 'go help build' under '-race'.
99
race_platforms := linux/amd64 freebsd/amd64 darwin/amd64 darwin/arm64 windows/amd64 linux/ppc64le linux/arm64
1010
RACE_ENABLED = $(if $(findstring ${current_platform},${race_platforms}),true,false)
11-
export CGO_ENABLED=1
1211

1312
.PHONY: all
1413
all: lint test
@@ -33,7 +32,7 @@ lint: lint-deps
3332
test-deps:
3433
@if [ ! -f "${GO_BIN}/go_js_wasm_exec" ]; then \
3534
set -ex; \
36-
GOOS= GOARCH= CGO_ENABLED= go install github.com/agnivade/wasmbrowsertest@${BROWSERTEST_VERSION}; \
35+
GOOS= GOARCH= go install github.com/agnivade/wasmbrowsertest@${BROWSERTEST_VERSION}; \
3736
ln -s "${GO_BIN}/wasmbrowsertest" "${GO_BIN}/go_js_wasm_exec"; \
3837
fi
3938
@go install github.com/mattn/[email protected]

0 commit comments

Comments
 (0)