View 0001-adjust-toolchain-paths-for-x86-64.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- gcc/config/i386/linux.h | |
+++ gcc/config/i386/linux.h | |
@@ -20,7 +20,13 @@ | |
<http://www.gnu.org/licenses/>. */ | |
#define GNU_USER_LINK_EMULATION "elf_i386" | |
-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2" | |
+#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux.so.2" | |
#undef MUSL_DYNAMIC_LINKER |
View dash-colors.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/dash -e | |
# Copyright (c) 2020, Firas Khalil Khana | |
# Distributed under the terms of the ISC License | |
for i in $(seq 30 37) $(seq 40 48); do | |
for j in $(seq 0 9); do | |
printf "\033[$j;${i}m\\\033[$j;${i}m\033[0m " | |
done | |
printf '\n' |
View generate-mcm-toolchain.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/dash -e | |
# Copyright (c) 2020, Firas Khalil Khana | |
# Distributed under the terms of the ISC License | |
# | |
# Credits to Rich Felker and musl-cross-make for making this possible | |
# | |
set -e |
View generate-toolchain.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/dash -e | |
# Copyright (c) 2020, Firas Khalil Khana | |
# Distributed under the terms of the ISC License | |
# | |
# This script is now officialy known as mussel and is maintained by | |
# firasuke over at: https://github.com/firasuke/mussel | |
# |