Skip to content

Commit 41c027b

Browse files
committed
tools: remove mips32 support
1 parent d356be0 commit 41c027b

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

tools/cross_compile.sh

+3-13
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ function expand_codescape_config() {
194194
# https://www.mips.com/mips-toolchain-configurations/
195195
# mips-img: MIPS32R6 and MIPS64R6
196196
case "${TARGET}" in
197-
"mips" | "mipsel" | "mips64" | "mips64el" | \
198-
"mips32-r6" | "mips32el-r6" | "mips64-r6" | "mips64el-r6" )
199-
# IMG Toolchain MIPS32R6 and MIPS64R6
197+
"mips64" | "mips64el" | \
198+
"mips64-r6" | "mips64el-r6" )
199+
# IMG Toolchain MIPS64R6
200200
# ref: https://codescape.mips.com/components/toolchain/2024.10-02/downloads.html
201201
local -r DATE=2024.10-02
202202
local -r CODESCAPE_URL=https://codescape.mips.com/components/toolchain/${DATE}/Codescape.GNU.Tools.Package.${DATE}.for.MIPS.IMG.Linux.CentOS-6.x86_64.tar.gz
@@ -214,16 +214,6 @@ function expand_codescape_config() {
214214
local -r GCC_DIR=${ARCHIVE_DIR}/${GCC_RELATIVE_DIR}
215215

216216
case "${TARGET}" in
217-
"mips" | "mips32-r6")
218-
local -r MIPS_FLAGS="-EB -mips32r6 -mabi=32"
219-
local -r FLAVOUR="mips-r6-hard"
220-
local -r LIBC_DIR_SUFFIX="lib"
221-
;;
222-
"mipsel" | "mips32el-r6")
223-
local -r MIPS_FLAGS="-EL -mips32r6 -mabi=32"
224-
local -r FLAVOUR="mipsel-r6-hard"
225-
local -r LIBC_DIR_SUFFIX="lib"
226-
;;
227217
"mips64" | "mips64-r6")
228218
local -r MIPS_FLAGS="-EB -mips64r6 -mabi=64"
229219
local -r FLAVOUR="mips-r6-hard"

0 commit comments

Comments
 (0)