check the device architecture to confirm ARM64 (aarch64
):
uname -om
output: aarch64 Android
install required tools and dependencies:
pkg update -y; pkg upgrade -y
pkg install git make clang build-essential -y
clone and build 3proxy:
git clone https://github.com/z3APA3A/3proxy
cd 3proxy
ln -s Makefile.Linux Makefile
make
output: binaries in 3proxy/bin/
3proxy compiling process on termux:
install required tools for frp:
pkg update -y; pkg upgrade -y
pkg install git golang make -y
clone and build frp:
git clone https://github.com/fatedier/frp
cd frp
make
output: binaries in frp/bin/
frp compiling process on termux: