diff options
Diffstat (limited to 'util/xcompile')
-rwxr-xr-x | util/xcompile/xcompile | 10 |
1 files changed, 9 insertions, 1 deletions
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 |