Displaying 2 results from an estimated 2 matches for "6ac1959".
Did you mean:
601959
2006 Apr 17
0
[PATCH] klibc: generate havesyscall in $(objtree) with make O=..
...+_klibccflags = $(call flags,__klibccflags)
+_klibcaflags = $(call flags,__klibcaflags)
+endif
klibccflags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(_klibccflags)
klibcaflags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(_klibcaflags)
diff --git a/usr/Kbuild b/usr/Kbuild
index bc50c48..6ac1959 100644
--- a/usr/Kbuild
+++ b/usr/Kbuild
@@ -4,7 +4,7 @@ #
# klibc definitions - to be moved to top-level Makefile later
export KLIBCSRC := $(srctree)/$(src)/klibc
-export KLIBCINC := $(srctree)/$(src)/include
+export KLIBCINC := $(src)/include
export KLIBCOBJ := $(objtree)/$(obj)/klibc
CONFI...
2006 Apr 17
0
[PATCH] kbuild: support single targets for klibc and klibc programs
...cmd_cc_o_c = KLIBCCC $@
%.o: %.c FORCE
$(call if_changed_dep,cc_o_c)
-quiet_cmd_cc_i_c = CPP $(quiet_modtag) $@
+quiet_cmd_cc_i_c = CPP $@
cmd_cc_i_c = $(KLIBCCC) -E $(klibccflags) -o $@ $<
%.i: %.c FORCE
$(call if_changed_dep,cc_i_c)
diff --git a/usr/Kbuild b/usr/Kbuild
index 6ac1959..6a2a85d 100644
--- a/usr/Kbuild
+++ b/usr/Kbuild
@@ -2,10 +2,6 @@ #
# kbuild file for usr/ - including initramfs image and klibc
#
-# klibc definitions - to be moved to top-level Makefile later
-export KLIBCSRC := $(srctree)/$(src)/klibc
-export KLIBCINC := $(src)/include
-export KLIBCOBJ := $...