search for: install_exec

Displaying 5 results from an estimated 5 matches for "install_exec".

2005 May 20
0
patch-bugfix: actually install shared lib to INSTALLROOT
....in --- orig/klibc-1.0.8/klcc.in 2005-03-07 23:44:49.000000000 +0200 diff -ur orig/klibc-1.0.8/klibc/Makefile klibc-1.0.8/klibc/Makefile --- orig/klibc-1.0.8/klibc/Makefile 2005-04-11 18:35:20.000000000 +0300 +++ klibc-1.0.8/klibc/Makefile 2005-05-17 19:30:09.000000000 +0300 @@ -185,7 +185,7 @@ $(INSTALL_EXEC) klibc-`cat $(SOLIB).hash`.so \ $(INSTALLROOT)$(INSTALLDIR)/$(CROSS)lib $(INSTALL_EXEC) klibc-`cat $(SOLIB).hash`.so \ - $(INSTALLROOT)/$(SHLIBDIR) + $(INSTALLROOT)/$(INSTALLDIR)/$(SHLIBDIR) ifneq ($(wildcard $(DIR).*.d),) include $(wildcard $(DIR).*.d)
2005 Jul 31
0
[patch] kbuild: build all targets in gzip
...) $(OBJS) $(LIBS) - -gunzip: gzip - rm -f $@ - ln $< $@ - -zcat: gzip - rm -f $@ - ln $< $@ - -gzip.stripped: gzip - $(STRIP) $< -o $@ - -clean: - $(RM) -f core *.o gzip gunzip zcat gzip.stripped .*.d - -spotless: clean - rm -f *~ - -# These should presumably be shared... -install: all - $(INSTALL_EXEC) gzip gunzip zcat $(INSTALLROOT)$(INSTALLDIR)/$(CROSS)bin - -endif +# Old install target - TODO +#install: all +# $(INSTALL_EXEC) gzip gunzip zcat $(INSTALLROOT)$(INSTALLDIR)/$(CROSS)bin diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc...
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.
2005 Jul 26
2
[PATCH] better kbuild integration
...) $(OBJS) $(LIBS) + +gunzip: gzip + rm -f $@ + ln $< $@ + +zcat: gzip + rm -f $@ + ln $< $@ + +gzip.stripped: gzip + $(STRIP) $< -o $@ + +clean: + $(RM) -f core *.o gzip gunzip zcat gzip.stripped .*.d + +spotless: clean + rm -f *~ + +# These should presumably be shared... +install: all + $(INSTALL_EXEC) gzip gunzip zcat $(INSTALLROOT)$(INSTALLDIR)/$(CROSS)bin + +endif diff --git a/kernel/Kbuild b/kernel/Kbuild --- a/kernel/Kbuild +++ b/kernel/Kbuild @@ -7,15 +7,26 @@ always := klibc/libc.a hostprogs-y := gen_init_cpio clean-files := initramfs_data.cpio.gz initramfs_list +# Descend do...
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.