This commit is contained in:
2026-05-16 00:18:06 -03:00
commit 92941e68a2
66 changed files with 10352 additions and 0 deletions

8
scripts/build_linux.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
mkdir -p dist
export CGO_ENABLED=1
go mod tidy
go build -trimpath -ldflags "-s -w" -o dist/socksrevivepc ./cmd/socksrevivepc
echo "Built dist/socksrevivepc"
echo "Run with sudo when using TUN mode."