mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-17 21:06:38 +08:00
Skip compile script on arm/v6
This commit is contained in:
parent
95aa910a4d
commit
9a734a323c
@ -47,8 +47,10 @@ cd tools
|
|||||||
chmod +x compile.sh
|
chmod +x compile.sh
|
||||||
if [ ${TARGETARCH} == 'amd64' ] || [ ${TARGETARCH} == 'arm64' ]; then
|
if [ ${TARGETARCH} == 'amd64' ] || [ ${TARGETARCH} == 'arm64' ]; then
|
||||||
./compile.sh linux64
|
./compile.sh linux64
|
||||||
else
|
elif [ ${TARGETARCH} == '386' ]; then
|
||||||
./compile.sh linux32
|
./compile.sh linux32
|
||||||
|
else
|
||||||
|
echo "Can not compile java classes under arm/v6 currently. WIP"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Generate distribution
|
#Generate distribution
|
||||||
|
Loading…
Reference in New Issue
Block a user