From 3b2ba01b448db736e41a0d6fa7b43ea2a024b973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=84=9A=E8=80=85?= <11926619+FansChou@users.noreply.github.com> Date: Sat, 17 May 2025 20:14:04 +0800 Subject: [PATCH] release: Fix build tags for android MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 愚者 <11926619+FansChou@users.noreply.github.com> --- cmd/internal/build_libbox/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/internal/build_libbox/main.go b/cmd/internal/build_libbox/main.go index 8f82ff36..7dcc9608 100644 --- a/cmd/internal/build_libbox/main.go +++ b/cmd/internal/build_libbox/main.go @@ -59,8 +59,8 @@ func init() { sharedFlags = append(sharedFlags, "-ldflags", "-X github.com/sagernet/sing-box/constant.Version="+currentTag+" -s -w -buildid=") debugFlags = append(debugFlags, "-ldflags", "-X github.com/sagernet/sing-box/constant.Version="+currentTag) - sharedTags = append(sharedTags, "with_gvisor", "with_quic", "with_wireguard", "with_utls", "with_clash_api") - iosTags = append(iosTags, "with_dhcp", "with_low_memory", "with_conntrack") + sharedTags = append(sharedTags, "with_gvisor", "with_quic", "with_wireguard", "with_utls", "with_clash_api", "with_conntrack") + iosTags = append(iosTags, "with_dhcp", "with_low_memory") memcTags = append(memcTags, "with_tailscale") debugTags = append(debugTags, "debug") }