mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-25 13:35:00 +00:00
Explicitly set GOOS when building binary
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
f05e4e81c5
commit
c728bf4b1e
4
Makefile
4
Makefile
@ -27,8 +27,10 @@ MODULE := github.com/NVIDIA/nvidia-container-toolkit
|
|||||||
docker-native:
|
docker-native:
|
||||||
include $(CURDIR)/docker/docker.mk
|
include $(CURDIR)/docker/docker.mk
|
||||||
|
|
||||||
|
GOOS ?= linux
|
||||||
|
|
||||||
binary:
|
binary:
|
||||||
go build -ldflags "-s -w" -o "$(LIB_NAME)" $(MODULE)/cmd/$(LIB_NAME)
|
GOOS=$(GOOS) go build -ldflags "-s -w" -o "$(LIB_NAME)" $(MODULE)/cmd/$(LIB_NAME)
|
||||||
|
|
||||||
# Define the check targets for the Golang codebase
|
# Define the check targets for the Golang codebase
|
||||||
.PHONY: check fmt assert-fmt ineffassign lint misspell vet
|
.PHONY: check fmt assert-fmt ineffassign lint misspell vet
|
||||||
|
Loading…
Reference in New Issue
Block a user