search for: usercc

Displaying 7 results from an estimated 7 matches for "usercc".

Did you mean: userc
2003 Oct 04
0
klibc: kbuild improvements
...o klibc@zytor.com - how do I do that? Already tried majordome@zytor.com - no luck. Sam ===== Makefile 1.415 vs edited ===== --- 1.415/Makefile Thu Jul 31 22:15:44 2003 +++ edited/Makefile Sat Oct 4 06:51:19 2003 @@ -255,7 +255,7 @@ include $(KLIBSRC)/arch/$(ARCH)/MCONFIG -export USERLD USERCC USERAR USERSTRIP USERNM \ +export KLIBSRC USERLD USERCC USERAR USERSTRIP USERNM \ USERCFLAGS USERAFLAGS USERLIBGCC USERSHAREDFLAGS USERSTRIPFLAGS \ USERCRT0 USERLIBC ===== scripts/Makefile.user 1.3 vs edited ===== --- 1.3/scripts/Makefile.user Tue Jun 10 05:56:56 2003 +++ edited/scripts/...
2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
...---------------------------------------------------------------- -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/$(ARCH) \ - -I$(srctree)/usr/include/b...
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.
2003 Mar 03
0
Re: [BK PATCH] klibc for 2.5.63
...vs edited ===== --- 1.385/Makefile Mon Mar 3 18:17:13 2003 +++ edited/Makefile Mon Mar 3 21:18:11 2003 @@ -933,4 +933,7 @@ # Usage is deprecated, because make does not see this as an invocation of make. descend =$(Q)$(MAKE) -f scripts/Makefile.build obj=$(1) $(2) +check_usergcc = $(shell if $(USERCC) $(1) -S -o /dev/null -xc /dev/null > \ + /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi) + FORCE: ===== usr/lib/arch/i386/MCONFIG 1.1 vs edited ===== --- 1.1/usr/lib/arch/i386/MCONFIG Sat Feb 15 23:53:51 2003 +++ edited/usr/lib/arch/i386/MCONFIG Mon Mar 3 21...
2005 Jul 28
0
[PATCH] Use KLIBSRC + KLIBINC consistent in kbuild files
...unning syscalls.pl -clean-files += $(objtree)/usr/include/klibc/havesyscall.h +clean-files += $(KLIBINC)/klibc/havesyscall.h # All the syscall stubs clean-files += *.o *.S *.c @@ -37,29 +35,29 @@ $(obj)/syscalls.o: $(call objectify,$(sy quiet_cmd_syscall.i = GEN $@ cmd_syscall.i = $(USERCC) $(usercflags) -D__ASSEMBLY__ \ -ansi -x assembler-with-cpp -E -o $@ $< -$(obj)/SYSCALLS.i: $(klibc-dir)/SYSCALLS.def FORCE +$(obj)/SYSCALLS.i: $(KLIBSRC)/SYSCALLS.def FORCE $(call if_changed_dep,syscall.i) # Get syscalls numbers quiet_cmd_syscall.nrs = GEN...
2005 Jul 26
2
[PATCH] better kbuild integration
...ln -f $@ $(obj)/klibc-`cat $(SOLIB).hash`.so $(SOHASH): $(SOLIB) $(SOLIB).hash $(call cmd,sohash) @@ -139,7 +140,7 @@ $(SOHASH): $(SOLIB) $(SOLIB).hash # build interp.o targets += interp.o -quiet_cmd_interp = BUILD $@ +quiet_cmd_interp = BUILD $@ cmd_interp = $(USERCC) $(usercflags) -D__ASSEMBLY__ \ -DLIBDIR=\"$(SHLIBDIR)\" \ -DSOHASH=\"`cat $(SOLIB).hash`\" \ diff --git a/klibc/socketcalls/Kbuild b/klibc/socketcalls/Kbuild --- a/klibc/socketcalls/Kbuild +++ b/klibc/socketcalls/Kbuild @@ -4,7...
2005 Jul 31
5
Shared versus static linked executables - and strip
I'm still pondering with kbuild and klibc. Next in line was to get ipconfig support in the kernel (build wise). A little challenge that is bigger than anticipated was to create a shared executable. This required a far bigger rewrite of Kbuild.klibc than originally planned. The good part is that I now managed to treat linking of objects with single and multiple .o files almost the same.