Add naiveproxy outbound

This commit is contained in:
世界
2025-12-09 19:31:29 +08:00
parent 76d447d7d9
commit 9ec1549a23
16 changed files with 1213 additions and 453 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -xeuo pipefail
TARGET="$1"
# Download musl-cross toolchain from musl.cc
cd "$HOME"
wget -q "https://musl.cc/${TARGET}-cross.tgz"
mkdir -p musl-cross
tar -xf "${TARGET}-cross.tgz" -C musl-cross --strip-components=1
rm "${TARGET}-cross.tgz"