mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-06 15:23:37 +03:00
tested with ../tests/basic.sh out/Release/naive. base changes come from chromium loong's official patch: https://github.com/loongson/chromium/blob/loongarch-patches/chromium120/new-world/0001-CH120-new-world-Add-llvm-cross-build-support-for-loo.patch
22 lines
609 B
Bash
Executable file
22 lines
609 B
Bash
Executable file
#!/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 [ "$SYSROOT_ARCH" = "loong64" -a "$WITH_SYSROOT" ]; then
|
|
rootfs="$PWD/$WITH_SYSROOT/target"
|
|
elif [ "$WITH_SYSROOT" ]; then
|
|
rootfs="$PWD/$WITH_SYSROOT"
|
|
fi
|
|
|
|
cd /tmp
|
|
python3 "$script_dir"/basic.py --naive="$naive" --rootfs="$rootfs" --target_cpu="$target_cpu" --server_protocol=https
|
|
python3 "$script_dir"/basic.py --naive="$naive" --rootfs="$rootfs" --target_cpu="$target_cpu" --server_protocol=http
|