Displaying 5 results from an estimated 5 matches for "adrtw".
2003 Oct 04
0
klibc: kbuild improvements
...+ ln -f $@ $(obj)/klibc-`cat $(obj)/libc.so.hash`.so
+
+# Hash variant of libc
+
+targets += libc.so.hash
+deps_libc.so.hash := libc.so sha1hash
+$(call defdep,libc.so.hash)
+quiet_cmd_libc.so.hash = HASH $@
+ cmd_libc.so.hash = $(USERNM) $(word 2,$^) | egrep '^[0-9a-fA-F]+ [ADRTW] ' | \
+ sort | $(obj)/sha1hash > $@
-deps_libc.so = crt0.o __shared_init.o $(LIBOBJS) $(ARCHOBJS) \
- $(syscall-objs) $(socketcall-objs)
-quiet_cmd_libc.so = LD $@
- cmd_libc.so = $(USERLD) $(USERLDFLAGS) $(USERSHAREDFLAGS) -o $@ $^
-
-$(obj)/libc.so: $(deps_libc.so...
2005 Jul 26
2
[PATCH] better kbuild integration
...9,6 +119,7 @@ $(SOLIB): $(CRT0) $(call objectify,__sha
# Build sha1 hash values
targets += klibc.so libc.so.hash
hostprogs-y := sha1hash
+clean-files += klibc-???????????????????????????.so
quiet_cmd_solibhash = HASH $@
cmd_solibhash = $(USERNM) $< | egrep '^[0-9a-fA-F]+ [ADRTW] ' | \
@@ -129,7 +130,7 @@ $(SOLIB).hash: $(SOLIB) $(obj)/sha1hash
quiet_cmd_sohash = GEN $@
cmd_sohash = cat $< > $@; \
$(USERSTRIP) $(USERSTRIPFLAGS) $@; \
- rm -f $(obj)/k...
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.
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...libc/arch/ppc/../../libgcc/__udivmoddi4.o /opt/cldk/lib/gcc/ppc-linux/4.4.4/nof/libgcc.a --end-group
gcc -Wp,-MD,usr/klibc/.sha1hash.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o usr/klibc/sha1hash usr/klibc/sha1hash.c
ppc-linux-nm usr/klibc/libc.so | egrep '^[0-9a-fA-F]+ [ADRTW] ' | sort | usr/klibc/sha1hash > usr/klibc/libc.so.hash
cat usr/klibc/libc.so > usr/klibc/klibc.so; ppc-linux-strip --strip-all -R .comment -R .note --strip-all -R .comment -R .note usr/klibc/klibc.so; chmod a+x usr/klibc/klibc.so; rm -f usr/klibc/klibc-???????????????????????????.so; l...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote:
> >
> Find attached two patches I have in order to build klibc 2.0.2
> against kernel 3.8.13
> We had to introduce those patches when going from kernel 3.6 to kernel 3.7
> Hope it helps.
>
those patches are wrong and again very brittle.
just use the way it is described in `make help':
A) cd ~/src/linux