Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/compilation/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ function set_compilation_variables() {
elif [[ "$target_arch" == "powerpc" ]]; then
export HOST=powerpc-linux-musl
elif [[ "$target_arch" == "mips" ]]; then
export HOST=mips-linux-musl
export HOST=mips-linux-muslsf # We compile with a soft-float compiler to support a wide range of mips cpus.
elif [[ "$target_arch" == "mipsel" ]]; then
export HOST=mipsel-linux-musl
export HOST=mipsel-linux-muslsf # We compile with a soft-float compiler to support a wide range of mips cpus.
elif [[ "$target_arch" == "x86_64" ]]; then
export HOST=x86_64-linux-musl
fi
Expand Down
4 changes: 2 additions & 2 deletions src/docker_utils/download_musl_toolchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"arm" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/arm-linux-musleabi-cross.tgz",
"aarch64" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/aarch64-linux-musl-cross.tgz",
"powerpc" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/powerpc-linux-musl-cross.tgz",
"mips" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/mips-linux-musl-cross.tgz",
"mipsel" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/mipsel-linux-musl-cross.tgz",
"mips" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/mips-linux-muslsf-cross.tgz",
"mipsel" : "https://github.com/guyush1/musl-cross-make/releases/download/musl-gcc14/mipsel-linux-muslsf-cross.tgz",
}
CHUNK_SIZE = 65536
MUSL_TOOLCHAINS_DIR = Path("/musl-toolchains")
Expand Down
Loading