Re: Linux 2.6.34-VENUS

2015-12-08 Thread Mike Frysinger
On 08 Dec 2015 21:11, Marcos Vinícius Rubido Sauda wrote: > sort: applet not found looks like your OS is broken and you need to fix that. not much the config project can do to help you here. the error message implies your busybox lacks the sort applet. -mike signature.asc Description: Digital

Re: PATCH: Add x32 support to config.guess

2015-02-23 Thread Mike Frysinger
On 23 Feb 2015 05:29, H.J. Lu wrote: > On Sun, Aug 19, 2012 at 2:47 AM, Ben Elliston wrote: > >> There are 12 existing set_cc_for_build usages in config.guess. I > >> don't think it is reasonable to require x32 not to use it without > >> providing an alternative. If you want to remove set_cc_for

Re: PATCH: Add x32 support to config.guess

2013-12-20 Thread Mike Frysinger
On Friday 20 December 2013 11:40:08 H.J. Lu wrote: > On Sun, Aug 19, 2012 at 2:47 AM, Ben Elliston wrote: > >> There are 12 existing set_cc_for_build usages in config.guess. I > >> don't think it is reasonable to require x32 not to use it without > >> providing an alternative. If you want to remo

Re: Problems with config.sub

2013-08-24 Thread Mike Frysinger
On Wednesday 24 July 2013 17:16:36 Peter Tuson wrote: > I am using with > ./config.sub armv5tel-unknown-linux-eabi your target is invalid. the end should be "gnueabi", not "eabi". -mike signature.asc Description: This is a digitally signed message part. _

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-22 Thread Mike Frysinger
On Tuesday 21 May 2013 09:57:32 Jan Engelhardt wrote: > On Tuesday 2013-05-21 07:33, Pavel Raiskup wrote: > >> Works for me. But we [distros] do want to mandate autoreconf anyway in > >> the general case: it is the *only* way to keep upstream honest about > >> the much hated build system not bitro

[PATCH] include ${LIBC} in guessed s390 linux targets

2013-05-15 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- ChangeLog| 6 ++ config.guess | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fb92167..604db4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2013-05-16 Mike Frysinger

[PATCH v2] generalize C library guess support

2013-05-14 Thread Mike Frysinger
Rather than copying & pasting this same logic for every target, hoist it up to a common location so all Linux targets can use it. --- v2 - set a default of LIBC=gnu when there is no compiler available config.guess | 106 +++ 1 file c

Re: [PATCH] generalize uClibc guess support

2013-05-14 Thread Mike Frysinger
On Tuesday 14 May 2013 00:39:04 Ben Elliston wrote: > On Mon, May 13, 2013 at 11:41:50PM -0400, Mike Frysinger wrote: > > Rather than copying & pasting this same logic for every target, > > hoist it up to a common location so all Linux targets can use it. > > There is

[PATCH] generalize uClibc guess support

2013-05-13 Thread Mike Frysinger
Rather than copying & pasting this same logic for every target, hoist it up to a common location so all Linux targets can use it. --- config.guess | 108 --- 1 file changed, 58 insertions(+), 50 deletions(-) diff --git a/config.guess b/confi