summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/crossgcc/Makefile9
-rwxr-xr-xutil/xcompile/xcompile10
2 files changed, 17 insertions, 2 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile
index 4aa6bdc2d6..0785b65cca 100644
--- a/util/crossgcc/Makefile
+++ b/util/crossgcc/Makefile
@@ -1,4 +1,4 @@
-all: build-i386 build-armv7a build-aarch64
+all: build-i386 build-armv7a build-aarch64 build-mips
build-i386:
bash ./buildgcc -G -p i386-elf
@@ -9,6 +9,9 @@ build-armv7a:
build-aarch64:
bash ./buildgcc -G -p aarch64-elf
+build-mips:
+ bash ./buildgcc -G -p mips-elf
+
.PHONY: build-i386-without-gdb
build-i386-without-gdb:
bash ./buildgcc -p i386-elf
@@ -21,6 +24,10 @@ build-armv7a-without-gdb:
build-aarch64-without-gdb:
bash ./buildgcc -p aarch64-elf
+.PHONY: build-mips-without-gdb
+build-mips-without-gdb:
+ bash ./buildgcc -p mips-elf
+
clean:
rm -rf xgcc
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index ea2eb47f73..29cad285cf 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -168,7 +168,7 @@ EOF
}
# Architecture definition
-SUPPORTED_ARCHITECTURE="x86 arm arm64 riscv"
+SUPPORTED_ARCHITECTURE="x86 arm arm64 riscv mipsel"
arch_config_arm() {
TARCH="arm"
@@ -204,6 +204,14 @@ arch_config_x86() {
TABI="elf"
}
+arch_config_mipsel() {
+ TARCH="mipsel"
+ TBFDARCH="littlemips"
+ TCLIST="mipsel"
+ TWIDTH="32"
+ TABI="elf"
+}
+
test_architecture() {
architecture=$1