Displaying 2 results from an estimated 2 matches for "ef112a4".
2010 Jul 05
5
version compatibility between linux and klibc
Are there any version compatibilities between linux and klibc? I tried to
compile the latest klibc (1.5.18) with the latest linux (2.6.32.15) and
there is miserable compile failures. It looks like klibc wants some headers
to be in include/asm (linked in my case to include/asm-x86) but they are
instead in include/asm-generic (it seems all headers but one are in there).
I put together this script
2010 Jul 07
0
[git pull v2] x86_32, sh4, getrusage()
...fixed allmost all other unified
archs.
Signed-off-by: Sam Ravnborg <sam at ravnborg.org>
Cc: Phil Howard <kunnskaperen at gmail.com>
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/klibc/arch/i386/MCONFIG b/usr/klibc/arch/i386/MCONFIG
index ef112a4..1150ece 100644
--- a/usr/klibc/arch/i386/MCONFIG
+++ b/usr/klibc/arch/i386/MCONFIG
@@ -31,3 +31,6 @@ KLIBCBITSIZE = 32
# calls, and work on the memory models for this architecture
# 96 MB - normal binaries start at 128 MB
KLIBCSHAREDFLAGS = -Ttext 0x06000200
+
+# Asm includes for i386 are in t...