Add support for arm64.

This commit is contained in:
Shishir Mahajan 2021-01-29 12:22:06 -08:00
parent 6c144bb3ca
commit e9742f23f2
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

23
Makefile.arm64 Normal file
View File

@ -0,0 +1,23 @@
BINARY ?= containerd-driver
ifndef $(GOLANG)
GOLANG=$(shell which go)
export GOLANG
endif
export GOARCH=arm64
export GO111MODULE=on
export GOOS=linux
default: build
.PHONY: clean
clean:
rm -f $(BINARY)
.PHONY: build
build:
$(GOLANG) build -o $(BINARY) .
.PHONY: test
test:
./tests/run_tests.sh