mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 21:36:12 +03:00
20 lines
369 B
Bash
20 lines
369 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
script_dir=$(dirname "$PWD/$0")
|
||
|
|
||
|
[ "$1" ] || exit 1
|
||
|
naive="$PWD/$1"
|
||
|
|
||
|
. ./get-sysroot.sh
|
||
|
|
||
|
if [ "$WITH_ANDROID_IMG" ]; then
|
||
|
rootfs="$PWD/out/sysroot-build/android/$WITH_ANDROID_IMG"
|
||
|
elif [ "$WITH_SYSROOT" ]; then
|
||
|
rootfs="$PWD/$WITH_SYSROOT"
|
||
|
fi
|
||
|
|
||
|
cd /tmp
|
||
|
python3 "$script_dir"/basic.py --naive="$naive" --rootfs="$rootfs" --target_cpu="$target_cpu"
|