Displaying 20 results from an estimated 30000 matches similar to: "klibc gcc wrapper and "make install""
2005 Mar 03
5
klibc 0.207 released
This changes the RPM spec file to have -devel and -utils packages; the
klibc main package is now only the runtime (plus libc.so and interp.o to
avoid version skew; someone who is better at RPM than I am might be able
to do the right thing with Requires and Provides to make sure there is a
100% binary match between files, using the hash code.)
I'd like to let this stew for a bit, to smoke
2004 Jun 08
2
klibc-0.130: s390, run-init
OK, I have just pushed out klibc-0.130; it significantly updates the run-init
program (again... PLEASE TEST IN A SAFE ENVIRONMENT) based on, but not
identical to, Alexander's suggestions; it also adds s390/x patches from Arnd
Bergmann.
-hpa
2008 Dec 29
1
klibc broken on ppc with linux-2.6.27 and workaround
Compilation was ok with klibc-1.5.10 on linux-2.6.25.
Distrib does not matter as it is inside a chroot a la LSF
With the upgrade to linux-2.6.27 it broke on 1.5.10 (I try too the last
1.5.14) with
make[1]: Entering directory `/usr/src/klibc-1.5.14'
GEN klcc/klibc.config
GEN klcc/klcc
HOSTCC scripts/basic/fixdep
KLIBCCC usr/klibc/__static_init.o
KLIBCCC usr/klibc/vsnprintf.o
2005 May 23
3
module-init-tools ported to klibc
Halo,
I don't know if this is already done but the following two patches (one
for klibc) and a big one (several smaller incorporated to one) to
modules-init-tools enables running modprobe and friends in early user space.
There are some issues so I post here for discussion
The porting strategy was copied from the udev package. I make a file
mod_libc_wrapper.{c,h} in order to provide the
2012 May 31
1
klibc 2.0 release
The stdio klibc branch got merged into klibc properly,
meaning the I/O being buffered. klibc gained with it
support for several stream functions. This massive work
got authored by hpa.
ipconfig saw several note worthy enhancement allowing the
generation of a proper lease file.
kinit added fs mount according to /etc/fstab or bootparam.
Plus several arch fixes for the usual suspects: alpha, i386,
2004 Aug 19
5
[PATCH] use reliable nfs mount options per default
Peter,
we found that nfs over udp will corrupt data under very extrem load,
there is no way to fix it due to the way how UDP works.
TCP will not have these problems.
I also wonder why the package size is only 1k. Everyone who wishes a
slow connection can pass the desired options via the kernel cmdline.
Everyone else prefers probably the fast mount.
The defaults should look more like that:
---
2011 Apr 14
1
Bug#622814: klibc: patch to make klcc play nice with multiarch linux-libc-dev
Package: klibc
Version: 1.5.20-1
Severity: normal
Tags: patch
User: ubuntu-devel at lists.ubuntu.com
Usertags: origin-ubuntu natty ubuntu-patch
Hi maks,
Since the Ubuntu linux-libc-dev is now installing its asm headers to the
multiarch /usr/include/<triplet>/ directory to allow co-installability, I've
pushed the attached patch to Ubuntu so klcc knows to include this path when
searching
2005 Mar 06
1
Detecting KLIBC from userspace
Hi
Currently I am trying to get device-mapper and dmraid ported to compile
against klibc. So far there was no real issues, as the only thing they
used was fscanf and feof not available presently in klibc (but easy to
work around).
Other than that there are really no way to easily check for installed
klibc's other than trying to mangle the output of klcc (from adjusted
configure.in):
-----
2005 Mar 02
2
[PATCH] klcc compatibility with gcc
Here's a patch to klcc.in from klibc-0.202. The context: I have an
application, managed with GNU automake/autoconf. Packagers should be
able to build the application with klibc if available, with plain gcc
otherwise, as follows:
$ cd ~/klibc-0.202
$ ... make linux symlink
$ make bindir=$HOME/local/bin \
mandir=$HOME/local/man \
INSTALLDIR=$HOME/local \
SHLIBDIR=$HOME/local/shlib \
2013 Aug 22
3
Build problems: klibc with Linux 3.10.7
Le 22/08/2013 14:36, Thorsten Glaser a ?crit :
> leroy christophe dixit:
>
>> If I set prefix to / and INSTALLROOT to /opt/klibc, klcc is not able to find
>> the include files
>> If I set prefix to /opt/klibc and SHLIBDIR to /opt/klibc/lib, it is the target
>> that tries to load klibc.so from /tmp/klibc-install/lib instead of /lib
> INSTALLROOT is some sort of
2003 Nov 28
2
[PATCH] update crt0.S on ppc32
The _start stuff was changed some time ago, but ppc was not updated.
This fixes klibc for me. I'm not sure what to do with the second arg to
__libc_init, so I set it to 0..
However, looking at other static binaries, there is more stuff todo.
diff -p -purNx linux -x '.*.d' -x syscalls -x socketcalls y/klibc-0.87/klibc/arch/ppc/crt0.S klibc-0.87/klibc/arch/ppc/crt0.S
---
2019 Jan 18
0
[klibc:master] remove some 'make -s' build spew
Commit-ID: 994adfcbd9bfcb45967b834c962db20b875fbd6c
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=994adfcbd9bfcb45967b834c962db20b875fbd6c
Author: Greg Thelen <gthelen at google.com>
AuthorDate: Sun, 25 Feb 2018 23:16:35 -0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Wed, 2 Jan 2019 03:08:04 +0000
[klibc] remove some 'make -s'
2004 Oct 18
3
arch/ia64/pipe.c:5:23: syscommon.h: No such file or directory
Peter,
current klibc does not compile in ia64:
gcc -Wp,-MT,arch/ia64/pipe.o,-MD,arch/ia64/.pipe.o.d -Os -fomit-frame-pointer -nostdinc -iwithprefix include -D__KLIBC__ -DBITSIZE=64 -I../include/arch/ia64 -I../include/bits64 -I../include -I../linux/include -I../linux/include2 -I../linux/include -DWITH_ERRLIST -W -Wall -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Winline -c -o
2005 Feb 10
1
[PATCH] make DEBUG=true
udev knows about DEBUG=true and builds a debug binary. Maybe klibc
should do the same?
Was there a reason for -g in the i386 MCONFIG?
Index: MCONFIG
===================================================================
--- MCONFIG (revision 1003)
+++ MCONFIG (working copy)
@@ -62,5 +62,11 @@
#
include $(KLIBSRC)/arch/$(ARCH)/MCONFIG
+ifeq ($(DEBUG),true)
+STRIP = /bin/true
2005 Oct 29
3
Re: [PATCH] Avoid using dc in git-count-objects
On Thu, Oct 27, 2005 at 10:22:08PM -0700, H. Peter Anvin wrote:
>
> >So it looks like as long as dash can link with klibc then:
OK, I've got it to build with klibc using klcc:
$ size src/dash
text data bss dec hex filename
63333 356 5940 69629 10ffd src/dash
Unfortunately there seems to be something fishy in parameter expansion
as it fails three
2005 Dec 28
1
Problems with klibc 1.1.8
Hi,
trying to build klibc 1.1.8 on x86 fails on my machine as follows:
KLIBCCC dash/trap.o
KLIBCCC dash/output.o
dash/trap.c: In function 'trapcmd':
dash/trap.c:94: warning: unused parameter 'argc'
dash/trap.c:94: warning: unused parameter 'argv'
dash/trap.c: In function 'decode_signal':
dash/trap.c:398: error: 'SIGRTMIN' undeclared (first use in this
2013 Aug 22
2
Build problems: klibc with Linux 3.10.7
Le 22/08/2013 07:43, leroy christophe a ?crit :
> Le 22/08/2013 00:59, Thorsten Glaser a ?crit :
>> leroy christophe dixit:
>>
>>> Also you can see that it does try to create /lib instead of
>>> /tmp/klibc-install/lib hence my second patch.
>> That actually seems to be by design. I always set
>> SHLIBDIR on the make command line, so it overrides that.
2009 Jun 30
1
multiple definition of `_start' when using -ld with klcc
Hi,
I am trying to setup an environment where I can build external projects against klibc. It works - except if I have a program that links to libc. Then I get a multiple definition of `_start' message. Here is a simple test case.
Jon
[ringlej at ringlejxbuild ~/temp/klibc-test]$ cat klibc-test.c
#include <stdio.h>
int main(void)
{
printf("hello world");
}
[ringlej
2005 Mar 08
1
klibc-1.0 pushed
I have pushed out klibc-1.0 and linked it into the Stable directory;
it's functionally the same as 0.217. With klcc having been introduced
and stabilized, it seemed to be time to give it a nonzero major number.
-hpa
2019 Jan 21
1
testing by building mksh (was Re: RFT: klibc 2.0.5)
On Sun, 2019-01-20 at 14:18 +0000, Thorsten Glaser wrote:
> Hi Ben,
>
> *massive* thanks for picking up klibc work. This might motivate
> me to pick up some of the TODOs for it that have piled on in my
> TODO (but only after the freeze, I?m sorry to say, I have more
> to do for other packages).
>
> >And I spotted another test program that has this property
>