search for: usercross

Displaying 3 results from an estimated 3 matches for "usercross".

2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
...efines used when compiling early userspace (klibc programs) -# --------------------------------------------------------------------------- -KLIBSRC := usr/klibc - -# Arch specific definitions for klibc -include $(KLIBSRC)/arch/$(ARCH)/MCONFIG - -USERWARNFLAGS := -W -Wall -Wsign-compare - -USERCROSS := $(CROSS_COMPILE) - -USERLD := $(USERCROSS)ld -USERCC := $(USERCROSS)gcc -USERAR := $(USERCROSS)ar -USERRANLIB := $(USERCROSS)ranlib -USERSTRIP := $(USERCROSS)strip -USERNM := $(USERCROSS)nm - -USERCPPFLAGS := -I$(srctree)/usr/include/arch/$...
2005 Jul 30
3
kbuild updates to klibc
Hi Peter & others. Here are three patches that does the following: #1 - Update kbuild part of klibc so make clean works Adds gzip including a sample kbuild file #2 - Factor out definition of usr/ to two variables #3 - Move kbuild files to reflect location in the kernel As requested in earlier mail I need a bit of guidiance of what you expect from the kernel integrated parts of klibc.
2005 Jul 26
2
[PATCH] better kbuild integration
...@ -31,8 +31,7 @@ KLIBSRC := usr/klibc # Arch specific definitions for klibc include $(KLIBSRC)/arch/$(ARCH)/MCONFIG -USERWARNFLAGS := -Wall -Wpointer-arith -Wwrite-strings \ - -Wstrict-prototypes -Winline +USERWARNFLAGS := -W -Wall -Wsign-compare USERCROSS := $(CROSS_COMPILE) @@ -48,9 +47,10 @@ USERCPPFLAGS := -I$(srctree)/usr/incl -I$(srctree)/usr/include \ -Iinclude \ $(if $(KBUILD_SRC),-Iinclude2 -I$(srctr...