From: Jason A. Donenfeld Date: Wed, 9 Dec 2020 14:56:35 +0000 (+0100) Subject: WireGuardGoKit: drop support for armv7 X-Git-Tag: 1.0.10-18~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3de7c99301a1fc95d346a11662cd3e9fe5c4c2f4;p=thirdparty%2Fwireguard-apple.git WireGuardGoKit: drop support for armv7 Apple and Go have both dropped it, so we do the same. Signed-off-by: Jason A. Donenfeld --- diff --git a/Sources/WireGuardKitGo/Makefile b/Sources/WireGuardKitGo/Makefile index 16ae02a..767edbd 100644 --- a/Sources/WireGuardKitGo/Makefile +++ b/Sources/WireGuardKitGo/Makefile @@ -3,8 +3,8 @@ # Copyright (C) 2018-2019 Jason A. Donenfeld . All Rights Reserved. # These are generally passed to us by xcode, but we set working defaults for standalone compilation too. -ARCHS ?= arm64 armv7 -SDK_NAME ?= iphoneos +ARCHS ?= x86_64 #TODO: add arm64 to this list once we support apple silicon +SDK_NAME ?= macosx SDKROOT ?= $(shell xcrun --sdk $(SDK_NAME) --show-sdk-path) CONFIGURATION_BUILD_DIR ?= $(CURDIR)/out CONFIGURATION_TEMP_DIR ?= $(CURDIR)/.tmp @@ -16,7 +16,6 @@ BUILDDIR ?= $(CONFIGURATION_TEMP_DIR)/wireguard-go-bridge CFLAGS_PREFIX := $(if $(DEPLOYMENT_TARGET_CLANG_FLAG_NAME),-$(DEPLOYMENT_TARGET_CLANG_FLAG_NAME)=$($(DEPLOYMENT_TARGET_CLANG_ENV_NAME)),) -isysroot $(SDKROOT) -arch GOARCH_arm64 := arm64 -GOARCH_armv7 := arm GOARCH_x86_64 := amd64 build: $(DESTDIR)/libwg-go.a