Displaying 2 results from an estimated 2 matches for "crtshared".
Did you mean:
c_shared
2020 Aug 29
0
[klibc:riscv64-enable-relax] Kbuild, klcc: Support multiple objects in KLIBCCRTSHARED
...=95a3123c94abc28c65f33c9589693dde9f140fe1
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Sat, 29 Aug 2020 22:29:52 +0100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 29 Aug 2020 22:53:10 +0100
[klibc] Kbuild, klcc: Support multiple objects in KLIBCCRTSHARED
On some architectures (notably riscv64) we need a wrapper for the main
function that is statically linked even when using a shared library.
* Allow architectures to override KLIBCCRTSHARED (they should always
append to it)
* Change klcc to use the list of filenames in KLIBCCRTSHARED, rather
t...
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
+...