Files
rk35xx-android14/external/capstone/suite/compile_all.sh
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

31 lines
545 B
Bash
Executable File

#! /bin/bash
# By Daniel Godas-Lopez.
export LD_LIBRARY_PATH=.
for x in default nix32 cross-win32 cross-win64 cygwin-mingw32 cygwin-mingw64 bsd clang gcc; do
echo -n "Compiling: $x ... "
./compile.sh $x &> /dev/null
if [ $? == 0 ]; then
echo "-> PASS"
else
echo -e "-> FAILED\n"
continue
fi
for t in test test_arm test_arm64 test_detail test_mips test_x86 test_ppc; do
./tests/$t &> /dev/null
if [ $? -eq 0 ]; then
echo " Run $t -> PASS"
else
echo " Run $t -> FAIL"
fi
done
echo
done
make clean &> /dev/null