From 3de7c99301a1fc95d346a11662cd3e9fe5c4c2f4 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 9 Dec 2020 15:56:35 +0100 Subject: WireGuardGoKit: drop support for armv7 Apple and Go have both dropped it, so we do the same. Signed-off-by: Jason A. Donenfeld --- Sources/WireGuardKitGo/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -- cgit v1.2.3-59-g8ed1b