search for: klibobj

Displaying 2 results from an estimated 2 matches for "klibobj".

Did you mean: klibcobj
2005 Feb 13
0
[PATCH] make install support
This adds make install support, either static or shared, default is static to avoid dependency mess. Index: MCONFIG =================================================================== --- MCONFIG (revision 1009) +++ MCONFIG (working copy) @@ -45,6 +45,19 @@ CRTSHARED = $(KLIBOBJ)/interp.o LIBSHARED = $(KLIBOBJ)/libc.so +INSTALL = /usr/bin/install + +# offset during make install +DESTDIR = + +# binaries will be installed here +# this is not the system /bin dir because the klibc binaries +# have not support for all cmdline options of their glibc counterparts +# it must al...
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.