Re: Building a uclibc based toolchain

2011-10-27 Thread stl
Thanks Rob and Jayant for your answers. I have finally complete the GCC build with --enable-language=c,c++. The uClibc libraries are to be installed at: prefix/target-uclinux/runtime/usr e.g. prefix/arm-uclinux/runtime/usr One should copy both 'include' and 'lib' contents at this path. You

Re: [PATCH] Fixing sh4 and sparc builds.

2011-10-27 Thread Carmelo AMOROSO
On 21/07/2011 23.05, Rob Landley wrote: I needed the following patch to make sh4 and sparc build with pthreads.old in current git: diff --git a/libc/sysdeps/linux/sh/Makefile.arch b/libc/sysdeps/linux/sh/Makefile.arch index 92e262b..6cbc681 100644 ---

Re: [PATCH 00/11] Patches for resolver functions support

2011-10-27 Thread Carmelo AMOROSO
On 14/10/2011 15.39, Carmelo AMOROSO wrote: On 14/10/2011 14.50, Bernhard Reutner-Fischer wrote: On Fri, Aug 26, 2011 at 02:55:29PM +0200, Carmelo AMOROSO wrote: Hello, I'm having some problem in building now NPTL without RESOLVER. I've fixed one of this problem (not yet pushed), but other

Re: Building a uclibc based toolchain

2011-10-27 Thread WANG.Jiong
On 10/27/2011 04:27 PM, stl wrote: Ok. These function seems to be declared but not defined. Why are these functions used? they are used for exception handling. In my uclibc port, I have a crt0.c startup file which contains '_start' entry symbol. It was working fine with my port of

Re: [PATCH] buildsys: s/CROSS/CROSS_COMPILE/g

2011-10-27 Thread Thierry Reding
* Carmelo AMOROSO wrote: On 27/10/2011 17.32, Mike Frysinger wrote: On Thu, Oct 27, 2011 at 16:42, Carmelo AMOROSO wrote: +ifndef CROSS_COMPILE +CROSS_COMPILE= endif this is kind of useless logic. i would change it to one line: CROSS_COMPILE ?= $(CROSS) -mike I've really

Re: [PATCH] buildsys: s/CROSS/CROSS_COMPILE/g

2011-10-27 Thread Carmelo AMOROSO
On 27/10/2011 23.04, Mike Frysinger wrote: On Thu, Oct 27, 2011 at 17:54, Carmelo AMOROSO wrote: On 27/10/2011 17.32, Mike Frysinger wrote: On Thu, Oct 27, 2011 at 16:42, Carmelo AMOROSO wrote: +ifndef CROSS_COMPILE +CROSS_COMPILE= endif this is kind of useless logic. i would change it