Skip to content
This repository was archived by the owner on Jun 27, 2021. It is now read-only.

Commit dae74af

Browse files
authored
Add arm64 to makefile and use golang 1.16 for cross compiling arm64 (#170)
1 parent 6e128c0 commit dae74af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GOTAGS ?=
1616
GOMAXPROCS ?= 8
1717

1818
# Get the project metadata
19-
GOVERSION := 1.15
19+
GOVERSION := 1.16
2020
PKG_NAME := gsuite
2121
PROJECT := github.com/DeviaVir/terraform-provider-$(PKG_NAME)
2222
OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT))))
@@ -31,8 +31,8 @@ GOARCH ?= $(shell go env GOARCH)
3131

3232
# Default os-arch combination to build
3333
XC_OS ?= linux darwin freebsd openbsd solaris windows
34-
XC_ARCH ?= amd64 386 arm
35-
XC_EXCLUDE ?= darwin/386 darwin/arm solaris/386 solaris/arm windows/arm
34+
XC_ARCH ?= amd64 386 arm arm64
35+
XC_EXCLUDE ?= darwin/386 darwin/arm solaris/386 solaris/arm windows/arm solaris/arm64 windows/arm64 freebsd/arm64 openbsd/arm64
3636

3737
# GPG Signing key (blank by default, means no GPG signing)
3838
GPG_KEY ?=

0 commit comments

Comments
 (0)