search for: usercpp

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

2003 Oct 04
0
klibc: kbuild improvements
...) @: # Compile C sources (.c) @@ -32,19 +32,19 @@ $(NOSTDINC_FLAGS) quiet_cmd_cc_s_c = USERCC $@ -cmd_cc_s_c = $(USERCC) $(usercflags) -S -o $@ $< + cmd_cc_s_c = $(USERCC) $(usercflags) -S -o $@ $< %.s: %.c FORCE $(call if_changed_dep,cc_s_c) quiet_cmd_cc_i_c = USERCPP $@ -cmd_cc_i_c = $(USERCPP) $(usercflags) -o $@ $< + cmd_cc_i_c = $(USERCPP) $(usercflags) -o $@ $< %.i: %.c FORCE $(call if_changed_dep,cc_i_c) quiet_cmd_cc_o_c = USERCC $@ -cmd_cc_o_c = $(USERCC) $(usercflags) -c -o $@ $< + cmd_cc_o_c = $(USERCC) $(user...
2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
...ARNFLAGS := -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/bits$(BITSIZE) \ - -I$(srctree)/usr/include \ - -Iinclude \ -...
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.