mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-19 23:44:58 +02:00

at least mips support is broken, but microblazed and possibly other archs work. while building mips the following error was encountered: Mode = sf\|df Suffix = si\|2\|3 /tmp/musl-cross-make/gcc-4.9.3/build0/./gcc/xgcc -B/tmp/musl-cross-make/gcc-4.9.3/build0/./gcc/ -B/tmp/musl-cross-make/output/mips-linux-musl/bin/ -B/tmp/musl-cross-make/output/mips-linux-musl/lib/ -isystem /tmp/musl-cross-make/output/mips-linux-musl/include -isystem /tmp/musl-cross-make/output/mips-linux-musl/sys-include -g -O2 -O0 -g0 -minterlink-mips16 -O2 -g -O2 -O0 -g0 -minterlink-mips16 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc -fPIC -I. -I. -I../.././gcc -I../../../libgcc -I../../../libgcc/. -I../../../libgcc/../gcc -I../../../libgcc/../include -DHAVE_CC_TLS -o subsf3.o -MT subsf3.o -MD -MP -MF subsf3.dep subsf3 -c ../../../libgcc/config/hardfp.c -fvisibility=hidden -DHIDE_EXPORTS -Wno-missing-prototypes xgcc: error: subsf3: No such file or directory make[3]: *** [subsf3.o] Error 1 this seems like a bug in a shell command that's invoked during the build, possibly a sed command using GNU-only syntax.
32 lines
915 B
Diff
32 lines
915 B
Diff
# HG changeset patch
|
|
# Parent d548cc2d1cfea3241205efc347caec8ad78c21d4
|
|
Microblaze support (again).
|
|
|
|
diff -r d548cc2d1cfe gcc/config/microblaze/linux.h
|
|
--- a/gcc/config/microblaze/linux.h Sun Jul 26 15:32:30 2015 -0400
|
|
+++ b/gcc/config/microblaze/linux.h Sun Jul 26 15:32:32 2015 -0400
|
|
@@ -28,7 +28,22 @@
|
|
#undef TLS_NEEDS_GOT
|
|
#define TLS_NEEDS_GOT 1
|
|
|
|
-#define DYNAMIC_LINKER "/lib/ld.so.1"
|
|
+#if TARGET_BIG_ENDIAN_DEFAULT == 0 /* LE */
|
|
+#define MUSL_DYNAMIC_LINKER_E "%{EB:;:el}"
|
|
+#else
|
|
+#define MUSL_DYNAMIC_LINKER_E "%{EL:el}"
|
|
+#endif
|
|
+
|
|
+#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-microblaze" MUSL_DYNAMIC_LINKER_E ".so.1"
|
|
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
|
|
+
|
|
+#if DEFAULT_LIBC == LIBC_MUSL
|
|
+#define DYNAMIC_LINKER MUSL_DYNAMIC_LINKER
|
|
+#else
|
|
+#define DYNAMIC_LINKER GLIBC_DYNAMIC_LINKER
|
|
+#endif
|
|
+
|
|
+
|
|
#undef SUBTARGET_EXTRA_SPECS
|
|
#define SUBTARGET_EXTRA_SPECS \
|
|
{ "dynamic_linker", DYNAMIC_LINKER }
|