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.
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
From 478ee0c03a08e2ef9371fd88d516738936943e78 Mon Sep 17 00:00:00 2001
|
|
From: David Holsgrove <david.holsgrove@xilinx.com>
|
|
Date: Fri, 28 Sep 2012 16:32:03 +1000
|
|
Subject: [PATCH 06/11] [Patch, microblaze]: Add SIZE_TYPE and PTRDIFF_TYPE to
|
|
microblaze.h
|
|
|
|
Fixes warnings like;
|
|
|
|
warning: format '%zX' expects argument of type 'size_t',
|
|
but argument 3 has type 'unsigned int' [-Wformat]
|
|
|
|
Changelog
|
|
|
|
2013-03-18 David Holsgrove <david.holsgrove@xilinx.com>
|
|
|
|
* gcc/config/microblaze/microblaze.h: Define SIZE_TYPE
|
|
and PTRDIFF_TYPE.
|
|
|
|
Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
|
|
---
|
|
gcc/config/microblaze/microblaze.h | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff -r 97f8346ce240 gcc/config/microblaze/microblaze.h
|
|
--- a/gcc/config/microblaze/microblaze.h Sun Jul 26 15:32:32 2015 -0400
|
|
+++ b/gcc/config/microblaze/microblaze.h Sun Jul 26 15:32:34 2015 -0400
|
|
@@ -218,6 +218,12 @@
|
|
#undef PTRDIFF_TYPE
|
|
#define PTRDIFF_TYPE "int"
|
|
|
|
+#undef SIZE_TYPE
|
|
+#define SIZE_TYPE "unsigned int"
|
|
+
|
|
+#undef PTRDIFF_TYPE
|
|
+#define PTRDIFF_TYPE "int"
|
|
+
|
|
#define CONSTANT_ALIGNMENT(EXP, ALIGN) \
|
|
((TREE_CODE (EXP) == STRING_CST || TREE_CODE (EXP) == CONSTRUCTOR) \
|
|
&& (ALIGN) < BITS_PER_WORD \
|