mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
82afe54b99
New features: - Full config view in quick format - Live tunnel config view in quick format - IPv4/IPv6 endpoint fallback and recovery - Improved DDNS handling - Improved realtime tunnel monitoring via wireguard-go callbacks handshake failures and success - Architecture change to always bring tunnels up with post tunnel bootstrapping for improved security and reliability with subsequent domain resolution and peer updates - Added support for DoT and custom DNS provider endpoints - Added support for Amnezia globals - Improved/shared config parser with desktop - Improved AndroidTV navigation What went away: - Kernel backend/mode - Ping monitoring (now redundant with the handshake monitoring)
58 lines
2.2 KiB
Makefile
58 lines
2.2 KiB
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright © 2017-2023 WireGuard LLC. All Rights Reserved.
|
|
|
|
BUILDDIR ?= $(CURDIR)/build
|
|
DESTDIR ?= $(CURDIR)/out
|
|
|
|
NDK_GO_ARCH_MAP_x86 := 386
|
|
NDK_GO_ARCH_MAP_x86_64 := amd64
|
|
NDK_GO_ARCH_MAP_arm := arm
|
|
NDK_GO_ARCH_MAP_arm64 := arm64
|
|
NDK_GO_ARCH_MAP_mips := mipsx
|
|
NDK_GO_ARCH_MAP_mips64 := mips64x
|
|
|
|
comma := ,
|
|
CLANG_FLAGS := --target=$(TARGET) --sysroot=$(SYSROOT)
|
|
export CGO_CFLAGS := $(CLANG_FLAGS) $(subst -mthumb,-marm,$(CFLAGS)) -I$(CURDIR)/vpn
|
|
export CGO_LDFLAGS := $(CLANG_FLAGS) $(patsubst -Wl$(comma)--build-id=%,-Wl$(comma)--build-id=none,$(LDFLAGS)) -Wl,-soname=libam-go.so
|
|
export GOARCH := $(NDK_GO_ARCH_MAP_$(ANDROID_ARCH_NAME))
|
|
export GOOS := android
|
|
export CGO_ENABLED := 1
|
|
export GOTOOLCHAIN := local
|
|
|
|
GO_VERSION := 1.24.4
|
|
GO_DIR := $(BUILDDIR)/go-$(GO_VERSION)
|
|
|
|
export GOROOT := $(GO_DIR)
|
|
export PATH := $(GO_DIR)/bin:$(PATH)
|
|
|
|
GO_PLATFORM := $(shell uname -s | tr '[:upper:]' '[:lower:]')-$(NDK_GO_ARCH_MAP_$(shell uname -m))
|
|
GO_TARBALL := go$(GO_VERSION).$(GO_PLATFORM).tar.gz
|
|
GO_HASH_darwin-amd64 := 69bef555e114b4a2252452b6e7049afc31fbdf2d39790b669165e89525cd3f5c
|
|
GO_HASH_darwin-arm64 := 27973684b515eaf461065054e6b572d9390c05e69ba4a423076c160165336470
|
|
GO_HASH_linux-amd64 := 77e5da33bb72aeaef1ba4418b6fe511bc4d041873cbf82e5aa6318740df98717
|
|
|
|
default: $(DESTDIR)/libam-go.so
|
|
|
|
$(GRADLE_USER_HOME)/caches/golang/$(GO_TARBALL):
|
|
mkdir -p "$(dir $@)"
|
|
flock "$@.lock" -c ' \
|
|
[ -f "$@" ] && exit 0; \
|
|
curl -o "$@.tmp" "https://dl.google.com/go/$(GO_TARBALL)" && \
|
|
echo "$(GO_HASH_$(GO_PLATFORM)) $@.tmp" | sha256sum -c && \
|
|
mv "$@.tmp" "$@"'
|
|
|
|
$(BUILDDIR)/go-$(GO_VERSION)/.prepared: $(GRADLE_USER_HOME)/caches/golang/$(GO_TARBALL)
|
|
mkdir -p "$(dir $@)"
|
|
flock "$@.lock" -c ' \
|
|
[ -f "$@" ] && exit 0; \
|
|
tar -C "$(dir $@)" --strip-components=1 -xzf "$^" && \
|
|
patch -p1 -f -N -r- -d "$(dir $@)" < goruntime-boottime-over-monotonic.diff && \
|
|
touch "$@"'
|
|
|
|
$(DESTDIR)/libam-go.so: export PATH := $(BUILDDIR)/go-$(GO_VERSION)/bin/:$(PATH)
|
|
$(DESTDIR)/libam-go.so: $(BUILDDIR)/go-$(GO_VERSION)/.prepared go.mod
|
|
go build -tags linux,notest,cgo -ldflags="-X github.com/amnezia-vpn/amneziawg-go/ipc.socketDirectory=/data/data/$(ANDROID_PACKAGE_NAME)/cache/amneziawg -buildid=" -v -trimpath -buildvcs=false -o "$@" -buildmode c-shared
|
|
|
|
.DELETE_ON_ERROR: |