Skip to content

Commit 14002e4

Browse files
authored
Merge pull request #613 from misakano7545/master
Add s390x architecture support
2 parents b122725 + 377a9a8 commit 14002e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ else ifeq ($(LOCAL_ARCH),arm64)
6363
TARGET_ARCH ?= arm64
6464
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
6565
TARGET_ARCH ?= arm
66+
else ifeq ($(LOCAL_ARCH),s390x)
67+
TARGET_ARCH ?= s390x
6668
else
6769
$(error This system's architecture $(LOCAL_ARCH) isn't supported)
6870
endif
@@ -291,4 +293,4 @@ vet:
291293

292294
.PHONY: goimports
293295
goimports:
294-
for d in $$(go list -mod=readonly -f '{{.Dir}}' -a ./... | fgrep -v tunnelrpc) ; do goimports -format-only -local github.com/cloudflare/cloudflared -w $$d ; done
296+
for d in $$(go list -mod=readonly -f '{{.Dir}}' -a ./... | fgrep -v tunnelrpc) ; do goimports -format-only -local github.com/cloudflare/cloudflared -w $$d ; done

0 commit comments

Comments
 (0)