typo: mipsel -> mipsle

This commit is contained in:
源文雨 2025-02-20 16:34:20 +09:00 committed by GitHub
parent 82ecc979de
commit cab1a025f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ export CGO_ENABLED=0
export ARTIFACT_DIR=artifacts/
mkdir -p $ARTIFACT_DIR
linuxArchs=("386" "amd64" "arm" "armhf" "arm64" "mipsel")
linuxArchs=("386" "amd64" "arm" "armhf" "arm64" "mipsle")
export TARGET_OS=linux
for arch in ${linuxArchs[@]}; do
unset TARGET_ARM
@ -29,7 +29,7 @@ for arch in ${linuxArchs[@]}; do
fi
## Support for softmips builds
if [[ $arch == mipsel ]] ; then
if [[ $arch == mipsle ]] ; then
export GOMIPS=softfloat
fi