All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-03-03 22:09 jacmet at uclibc.org
  2009-03-06 17:56 ` Thiago A. Corrêa
  0 siblings, 1 reply; 52+ messages in thread
From: jacmet at uclibc.org @ 2009-03-03 22:09 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-03-03 22:09:50 +0000 (Tue, 03 Mar 2009)
New Revision: 25513

Log:
binutils: add 2.19.1

Modified:
   trunk/buildroot/toolchain/binutils/Config.in
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2009-03-03 21:23:34 UTC (rev 25512)
+++ trunk/buildroot/toolchain/binutils/Config.in	2009-03-03 22:09:50 UTC (rev 25513)
@@ -4,7 +4,7 @@
 
 choice
 	prompt "Binutils Version"
-	default BR2_BINUTILS_VERSION_2_19
+	default BR2_BINUTILS_VERSION_2_19_1
 	help
 	  Select the version of binutils you wish to use.
 
@@ -20,6 +20,7 @@
 
 	config BR2_BINUTILS_VERSION_2_18
 		depends on !BR2_nios2
+		depends on BR2_DEPRECATED
 		depends on BR2_EXT_BINUTILS_VERSION_2_18
 		bool "binutils 2.18"
 
@@ -50,7 +51,13 @@
 
 	config BR2_BINUTILS_VERSION_2_19
 		depends on !BR2_avr32 && !BR2_nios2
+		depends on BR2_DEPRECATED || BR2_RECENT
 		bool "binutils 2.19"
+
+	config BR2_BINUTILS_VERSION_2_19_1
+		depends on !BR2_avr32 && !BR2_nios2
+		bool "binutils 2.19.1"
+
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -65,6 +72,7 @@
 	default "2.18.50.0.8"	if BR2_BINUTILS_VERSION_2_18_50_0_8
 	default "2.18.50.0.9"	if BR2_BINUTILS_VERSION_2_18_50_0_9
 	default "2.19"		if BR2_BINUTILS_VERSION_2_19
+	default "2.19.1"	if BR2_BINUTILS_VERSION_2_19_1
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2009-03-03 21:23:34 UTC (rev 25512)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2009-03-03 22:09:50 UTC (rev 25513)
@@ -9,6 +9,9 @@
 EXTRA_BINUTILS_CONFIG_OPTIONS=$(strip $(subst ",, $(BR2_EXTRA_BINUTILS_CONFIG_OPTIONS)))
 #"))
 BINUTILS_SITE:=$(BR2_KERNEL_MIRROR)/linux/devel/binutils
+ifeq ($(BINUTILS_VERSION),2.19.1)
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
+endif
 ifeq ($(BINUTILS_VERSION),2.19)
 BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 endif

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-03 22:09 [Buildroot] svn commit: trunk/buildroot/toolchain/binutils jacmet at uclibc.org
@ 2009-03-06 17:56 ` Thiago A. Corrêa
  2009-03-06 21:21   ` Peter Korsgaard
  0 siblings, 1 reply; 52+ messages in thread
From: Thiago A. Corrêa @ 2009-03-06 17:56 UTC (permalink / raw)
  To: buildroot

Hi Peter,

On Tue, Mar 3, 2009 at 7:09 PM,  <jacmet@uclibc.org> wrote:
> Changeset:
> Modified: trunk/buildroot/toolchain/binutils/Config.in
> ===================================================================
> --- trunk/buildroot/toolchain/binutils/Config.in ? ? ? ?2009-03-03 21:23:34 UTC (rev 25512)
> +++ trunk/buildroot/toolchain/binutils/Config.in ? ? ? ?2009-03-03 22:09:50 UTC (rev 25513)
> @@ -20,6 +20,7 @@
>
> ? ? ? ?config BR2_BINUTILS_VERSION_2_18
> ? ? ? ? ? ? ? ?depends on !BR2_nios2
> + ? ? ? ? ? ? ? depends on BR2_DEPRECATED
> ? ? ? ? ? ? ? ?depends on BR2_EXT_BINUTILS_VERSION_2_18
> ? ? ? ? ? ? ? ?bool "binutils 2.18"
>

This breaks AVR32 external toolchain thing. I tried to make it:
depends on BR2_DEPRECATED if !BR2_avr32

but it didn't work, looks like kconfig doesn't accept ! logic with depends

Is there a way around? Right now I've removed that line from my local
repository to keep things working.

Kind Regards,
   Thiago A. Correa

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-06 17:56 ` Thiago A. Corrêa
@ 2009-03-06 21:21   ` Peter Korsgaard
  2009-03-08  2:20     ` Thiago A. Corrêa
  0 siblings, 1 reply; 52+ messages in thread
From: Peter Korsgaard @ 2009-03-06 21:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Thiago" == Thiago A Corr?a <thiago.correa@gmail.com> writes:

Hi,

 >> + ? ? ? ? ? ? ? depends on BR2_DEPRECATED
 >> ? ? ? ? ? ? ? ?depends on BR2_EXT_BINUTILS_VERSION_2_18
 >> ? ? ? ? ? ? ? ?bool "binutils 2.18"
 >> 

 Thiago> This breaks AVR32 external toolchain thing. I tried to make it:
 Thiago> depends on BR2_DEPRECATED if !BR2_avr32

 Thiago> but it didn't work, looks like kconfig doesn't accept ! logic
 Thiago> with depends

I think depends on BR2_DEPRECATED || BR2_avr32 works.

Sorry, I keep on forgetting about avr32 being so special.

I'll fix it.

 Thiago> Is there a way around? Right now I've removed that line from
 Thiago> my local repository to keep things working.

How's avr32 support for newer binutils/gcc going?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-06 21:21   ` Peter Korsgaard
@ 2009-03-08  2:20     ` Thiago A. Corrêa
  2009-03-09  5:58       ` Hans-Christian Egtvedt
  0 siblings, 1 reply; 52+ messages in thread
From: Thiago A. Corrêa @ 2009-03-08  2:20 UTC (permalink / raw)
  To: buildroot

Hi,

> ?Thiago> This breaks AVR32 external toolchain thing. I tried to make it:
> ?Thiago> depends on BR2_DEPRECATED if !BR2_avr32
>
> ?Thiago> but it didn't work, looks like kconfig doesn't accept ! logic
> ?Thiago> with depends
>
> I think depends on BR2_DEPRECATED || BR2_avr32 works.
> Sorry, I keep on forgetting about avr32 being so special.
> I'll fix it.

Thanks, it's fixed now.

>
> How's avr32 support for newer binutils/gcc going?
>

I wish I knew. I've asked Atmel's support twice already to forward it
as a "customer wish", in a hope that they would speed up (or actually
start), but it was to no avail so far.

I guess all I can do now is keep my fingers crossed.

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-08  2:20     ` Thiago A. Corrêa
@ 2009-03-09  5:58       ` Hans-Christian Egtvedt
  2009-03-09  8:00         ` Peter Korsgaard
  0 siblings, 1 reply; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2009-03-09  5:58 UTC (permalink / raw)
  To: buildroot

On Sat, 7 Mar 2009 23:20:36 -0300
Thiago A. Corr?a <thiago.correa@gmail.com> wrote:

<snipp>

> > How's avr32 support for newer binutils/gcc going?
> >
> 
> I wish I knew. I've asked Atmel's support twice already to forward it
> as a "customer wish", in a hope that they would speed up (or actually
> start), but it was to no avail so far.
> 

Last news, about a month ago, is that the legal papers are gathering
signatures. First attempt to gather signatures lead to a deadlock, FSF
waiting for Atmel, Atmel waiting for FSF. But now they are, AFAIK, back
on track.

<snipp>

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-09  5:58       ` Hans-Christian Egtvedt
@ 2009-03-09  8:00         ` Peter Korsgaard
  2009-03-09  8:09           ` Hans-Christian Egtvedt
  0 siblings, 1 reply; 52+ messages in thread
From: Peter Korsgaard @ 2009-03-09  8:00 UTC (permalink / raw)
  To: buildroot

>>>>> "Hans-Christian" == Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> writes:

 Hans-Christian> Last news, about a month ago, is that the legal
 Hans-Christian> papers are gathering signatures. First attempt to
 Hans-Christian> gather signatures lead to a deadlock, FSF waiting for
 Hans-Christian> Atmel, Atmel waiting for FSF. But now they are,
 Hans-Christian> AFAIK, back on track.

Thanks - Ok, that's all the legal stuff - But what about the technical
work? I guess the FSF isn't particular interested in patches against
binutils 2.18 from 2007?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-09  8:00         ` Peter Korsgaard
@ 2009-03-09  8:09           ` Hans-Christian Egtvedt
  2009-03-09  8:24             ` Peter Korsgaard
  0 siblings, 1 reply; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2009-03-09  8:09 UTC (permalink / raw)
  To: buildroot

On Mon, 09 Mar 2009 09:00:59 +0100
Peter Korsgaard <jacmet@uclibc.org> wrote:

> >>>>> "Hans-Christian" == Hans-Christian Egtvedt
> >>>>> <hans-christian.egtvedt@atmel.com> writes:
> 
>  Hans-Christian> Last news, about a month ago, is that the legal
>  Hans-Christian> papers are gathering signatures. First attempt to
>  Hans-Christian> gather signatures lead to a deadlock, FSF waiting for
>  Hans-Christian> Atmel, Atmel waiting for FSF. But now they are,
>  Hans-Christian> AFAIK, back on track.
> 
> Thanks - Ok, that's all the legal stuff - But what about the technical
> work? I guess the FSF isn't particular interested in patches against
> binutils 2.18 from 2007?
> 

Atmel will submit patches against current HEAD/trunk of course.

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-09  8:09           ` Hans-Christian Egtvedt
@ 2009-03-09  8:24             ` Peter Korsgaard
  2009-03-09  8:37               ` Hans-Christian Egtvedt
  0 siblings, 1 reply; 52+ messages in thread
From: Peter Korsgaard @ 2009-03-09  8:24 UTC (permalink / raw)
  To: buildroot

>>>>> "Hans-Christian" == Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> writes:

Hi,

 >> Thanks - Ok, that's all the legal stuff - But what about the technical
 >> work? I guess the FSF isn't particular interested in patches against
 >> binutils 2.18 from 2007?
 >> 

 Hans-Christian> Atmel will submit patches against current HEAD/trunk of course.

Great, does that mean that there's patches for 2.19(.1) somewhere that
we could move to in BR?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-03-09  8:24             ` Peter Korsgaard
@ 2009-03-09  8:37               ` Hans-Christian Egtvedt
  0 siblings, 0 replies; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2009-03-09  8:37 UTC (permalink / raw)
  To: buildroot

On Mon, 09 Mar 2009 09:24:29 +0100
Peter Korsgaard <jacmet@uclibc.org> wrote:

> >>>>> "Hans-Christian" == Hans-Christian Egtvedt
> >>>>> <hans-christian.egtvedt@atmel.com> writes:
> 
> Hi,
> 
>  >> Thanks - Ok, that's all the legal stuff - But what about the
>  >> technical work? I guess the FSF isn't particular interested in
>  >> patches against binutils 2.18 from 2007?
>  >> 
> 
>  Hans-Christian> Atmel will submit patches against current HEAD/trunk
> of course.
> 
> Great, does that mean that there's patches for 2.19(.1) somewhere that
> we could move to in BR?
> 

Not officially, no.

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-03-05 13:40 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2009-03-05 13:40 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-03-05 13:40:11 +0000 (Thu, 05 Mar 2009)
New Revision: 25544

Log:
binutils: really remove ancient dirs (missing from r25067, git-svn issue)

Removed:
   trunk/buildroot/toolchain/binutils/2.14.90.0.8/
   trunk/buildroot/toolchain/binutils/2.15.94.0.2.2/
   trunk/buildroot/toolchain/binutils/2.15/
   trunk/buildroot/toolchain/binutils/2.16.1/
   trunk/buildroot/toolchain/binutils/2.16.90.0.3/
   trunk/buildroot/toolchain/binutils/2.16.91.0.5/
   trunk/buildroot/toolchain/binutils/2.16.91.0.6/
   trunk/buildroot/toolchain/binutils/2.16.91.0.7/
   trunk/buildroot/toolchain/binutils/2.17.50.0.10/
   trunk/buildroot/toolchain/binutils/2.17.50.0.12/
   trunk/buildroot/toolchain/binutils/2.17.50.0.14/
   trunk/buildroot/toolchain/binutils/2.17.50.0.16/
   trunk/buildroot/toolchain/binutils/2.17.50.0.2/
   trunk/buildroot/toolchain/binutils/2.17.50.0.3/
   trunk/buildroot/toolchain/binutils/2.17.50.0.4/
   trunk/buildroot/toolchain/binutils/2.17.50.0.5/
   trunk/buildroot/toolchain/binutils/2.17.50.0.6/
   trunk/buildroot/toolchain/binutils/2.17.50.0.7/
   trunk/buildroot/toolchain/binutils/2.17.50.0.8/
   trunk/buildroot/toolchain/binutils/2.17.50.0.9/


Changeset:

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-03-03 22:09 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2009-03-03 22:09 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-03-03 22:09:58 +0000 (Tue, 03 Mar 2009)
New Revision: 25514

Log:
binutils: remove handling of ancient versions

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2009-03-03 22:09:50 UTC (rev 25513)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2009-03-03 22:09:58 UTC (rev 25514)
@@ -21,30 +21,6 @@
 ifeq ($(BINUTILS_VERSION),2.17)
 BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 endif
-ifeq ($(BINUTILS_VERSION),2.16)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
-BINUTILS_NO_MPFR:=y
-endif
-ifeq ($(BINUTILS_VERSION),2.16.1)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
-BINUTILS_NO_MPFR:=y
-endif
-ifeq ($(BINUTILS_VERSION),2.15)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
-BINUTILS_NO_MPFR:=y
-endif
-ifeq ($(BINUTILS_VERSION),2.14)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
-BINUTILS_NO_MPFR:=y
-endif
-ifeq ($(BINUTILS_VERSION),2.13)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
-BINUTILS_NO_MPFR:=y
-endif
-ifeq ($(BINUTILS_VERSION),2.15.97)
-BINUTILS_SITE:=ftp://sources.redhat.com/pub/binutils/snapshots/
-BINUTILS_NO_MPFR:=y
-endif
 
 # We do not rely on the host's gmp/mpfr but use a known working one
 BINUTILS_HOST_PREREQ:=

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-02-10 15:48 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2009-02-10 15:48 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-02-10 15:48:19 +0000 (Tue, 10 Feb 2009)
New Revision: 25294

Log:
binutils: depend on static version of gmp/mpfr

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2009-02-10 15:19:57 UTC (rev 25293)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2009-02-10 15:48:19 UTC (rev 25294)
@@ -55,8 +55,8 @@
 endif
 
 ifndef BINUTILS_NO_MPFR
-BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
-	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
+BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_LIBEXT) \
+	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_LIBEXT)
 
 BINUTILS_TARGET_PREREQ:=$(TARGET_DIR)/usr/lib/libgmp$(LIBTGTEXT) \
 	$(TARGET_DIR)/usr/lib/libmpfr$(LIBTGTEXT)

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-01-03 16:24 ulf at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: ulf at uclibc.org @ 2009-01-03 16:24 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-03 16:24:14 +0000 (Sat, 03 Jan 2009)
New Revision: 24676

Log:
Fix binutils Config for AVR32 (hopefully final version)

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 16:10:50 UTC (rev 24675)
+++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 16:24:14 UTC (rev 24676)
@@ -9,14 +9,10 @@
 	  Select the version of binutils you wish to use.
 
 	config BR2_BINUTILS_VERSION_2_17
-		depends on !BR2_avr32 && !BR2_nios2
-		depends on BR2_DEPRECATED
+		depends on !BR2_nios2
+		depends on BR2_DEPRECATED || (BR2_avr32 && BR2_EXT_BINUTILS_VERSION_2_17)
 		bool "binutils 2.17"
 
-	config BR2_BINUTILS_VERSION_2_17
-		depends on BR2_avr32
-		depends on BR2_EXT_BINUTILS_VERSION_2_17
-		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_17
 		depends on !BR2_avr32 && !BR2_nios2

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-01-03 15:05 ` Nigel Kukard
  2009-01-03 15:02   ` Ulf Samuelsson
@ 2009-01-03 15:15   ` Ulf Samuelsson
  1 sibling, 0 replies; 52+ messages in thread
From: Ulf Samuelsson @ 2009-01-03 15:15 UTC (permalink / raw)
  To: buildroot

l?r 2009-01-03 klockan 15:05 +0000 skrev Nigel Kukard:
> ulf at uclibc.org wrote:
> > Author: ulf
> > Date: 2009-01-03 00:59:57 +0000 (Sat, 03 Jan 2009)
> > New Revision: 24661
> >
> > Log:
> > Unbreak AVR32 toolchain, by making binutils-2.17 available
> >
> > Modified:
> >    trunk/buildroot/toolchain/binutils/Config.in
> >
> >
> > Changeset:
> > Modified: trunk/buildroot/toolchain/binutils/Config.in
> > ===================================================================
> > --- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:40:02 UTC (rev 24660)
> > +++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:59:57 UTC (rev 24661)
> > @@ -14,6 +14,10 @@
> >  		depends on BR2_EXT_BINUTILS_VERSION_2_17
> >  		bool "binutils 2.17"
> >  
> > +	config BR2_BINUTILS_VERSION_2_17
> > +		depends on BR2_avr32
> > +		bool "binutils 2.17"
> > +
> >  	config BR2_BINUTILS_VERSION_2_17_50_0_17
> >  		depends on !BR2_avr32 && !BR2_nios2
> >  		depends on BR2_DEPRECATED
> >   
> This causes a warning...
> toolchain/binutils/Config.in:19:warning: choice values currently only
> support a single prompt
> toolchain/binutils/Config.in:14:warning: choice values currently only
> support a single prompt

Sorry, my mistake, I needed to update.
I'll look into it right now.


> 
> 
> Please fix.
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-01-03  0:59 ulf at uclibc.org
@ 2009-01-03 15:05 ` Nigel Kukard
  2009-01-03 15:02   ` Ulf Samuelsson
  2009-01-03 15:15   ` Ulf Samuelsson
  0 siblings, 2 replies; 52+ messages in thread
From: Nigel Kukard @ 2009-01-03 15:05 UTC (permalink / raw)
  To: buildroot

ulf at uclibc.org wrote:
> Author: ulf
> Date: 2009-01-03 00:59:57 +0000 (Sat, 03 Jan 2009)
> New Revision: 24661
>
> Log:
> Unbreak AVR32 toolchain, by making binutils-2.17 available
>
> Modified:
>    trunk/buildroot/toolchain/binutils/Config.in
>
>
> Changeset:
> Modified: trunk/buildroot/toolchain/binutils/Config.in
> ===================================================================
> --- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:40:02 UTC (rev 24660)
> +++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:59:57 UTC (rev 24661)
> @@ -14,6 +14,10 @@
>  		depends on BR2_EXT_BINUTILS_VERSION_2_17
>  		bool "binutils 2.17"
>  
> +	config BR2_BINUTILS_VERSION_2_17
> +		depends on BR2_avr32
> +		bool "binutils 2.17"
> +
>  	config BR2_BINUTILS_VERSION_2_17_50_0_17
>  		depends on !BR2_avr32 && !BR2_nios2
>  		depends on BR2_DEPRECATED
>   
This causes a warning...
toolchain/binutils/Config.in:19:warning: choice values currently only
support a single prompt
toolchain/binutils/Config.in:14:warning: choice values currently only
support a single prompt


Please fix.

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2009-01-03 15:05 ` Nigel Kukard
@ 2009-01-03 15:02   ` Ulf Samuelsson
  2009-01-03 15:15   ` Ulf Samuelsson
  1 sibling, 0 replies; 52+ messages in thread
From: Ulf Samuelsson @ 2009-01-03 15:02 UTC (permalink / raw)
  To: buildroot

l?r 2009-01-03 klockan 15:05 +0000 skrev Nigel Kukard:
> ulf at uclibc.org wrote:
> > Author: ulf
> > Date: 2009-01-03 00:59:57 +0000 (Sat, 03 Jan 2009)
> > New Revision: 24661
> >
> > Log:
> > Unbreak AVR32 toolchain, by making binutils-2.17 available
> >
> > Modified:
> >    trunk/buildroot/toolchain/binutils/Config.in
> >
> >
> > Changeset:
> > Modified: trunk/buildroot/toolchain/binutils/Config.in
> > ===================================================================
> > --- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:40:02 UTC (rev 24660)
> > +++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:59:57 UTC (rev 24661)
> > @@ -14,6 +14,10 @@
> >  		depends on BR2_EXT_BINUTILS_VERSION_2_17
> >  		bool "binutils 2.17"
> >  
> > +	config BR2_BINUTILS_VERSION_2_17
> > +		depends on BR2_avr32
> > +		bool "binutils 2.17"
> > +
> >  	config BR2_BINUTILS_VERSION_2_17_50_0_17
> >  		depends on !BR2_avr32 && !BR2_nios2
> >  		depends on BR2_DEPRECATED
> >   
> This causes a warning...
> toolchain/binutils/Config.in:19:warning: choice values currently only
> support a single prompt
> toolchain/binutils/Config.in:14:warning: choice values currently only
> support a single prompt

I made a fix right after this, so it should already work in SVN.
Pls do an svn update and try again.
/Ulf


> 
> 
> Please fix.
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-01-03  1:06 ulf at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: ulf at uclibc.org @ 2009-01-03  1:06 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-03 01:06:16 +0000 (Sat, 03 Jan 2009)
New Revision: 24662

Log:
one more fix of binutils config for AVR32 toolchain

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:59:57 UTC (rev 24661)
+++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 01:06:16 UTC (rev 24662)
@@ -11,11 +11,11 @@
 	config BR2_BINUTILS_VERSION_2_17
 		depends on !BR2_avr32 && !BR2_nios2
 		depends on BR2_DEPRECATED
-		depends on BR2_EXT_BINUTILS_VERSION_2_17
 		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17
 		depends on BR2_avr32
+		depends on BR2_EXT_BINUTILS_VERSION_2_17
 		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_17

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-01-03  0:59 ulf at uclibc.org
  2009-01-03 15:05 ` Nigel Kukard
  0 siblings, 1 reply; 52+ messages in thread
From: ulf at uclibc.org @ 2009-01-03  0:59 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-03 00:59:57 +0000 (Sat, 03 Jan 2009)
New Revision: 24661

Log:
Unbreak AVR32 toolchain, by making binutils-2.17 available

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:40:02 UTC (rev 24660)
+++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-03 00:59:57 UTC (rev 24661)
@@ -14,6 +14,10 @@
 		depends on BR2_EXT_BINUTILS_VERSION_2_17
 		bool "binutils 2.17"
 
+	config BR2_BINUTILS_VERSION_2_17
+		depends on BR2_avr32
+		bool "binutils 2.17"
+
 	config BR2_BINUTILS_VERSION_2_17_50_0_17
 		depends on !BR2_avr32 && !BR2_nios2
 		depends on BR2_DEPRECATED

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2009-01-02 20:30 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2009-01-02 20:30 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-01-02 20:30:54 +0000 (Fri, 02 Jan 2009)
New Revision: 24649

Log:
toolchain/binutils: fix up avr32 related fallout of r24474

It's been 10 days now without any reply from Ulf, so fix it up to what
seems sensible.

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2009-01-02 15:44:18 UTC (rev 24648)
+++ trunk/buildroot/toolchain/binutils/Config.in	2009-01-02 20:30:54 UTC (rev 24649)
@@ -9,8 +9,8 @@
 	  Select the version of binutils you wish to use.
 
 	config BR2_BINUTILS_VERSION_2_17
-		depends on BR2_avr32 || !BR2_nios2
-		depends on BR2_DEPRECATED && !BR2_avr32
+		depends on !BR2_avr32 && !BR2_nios2
+		depends on BR2_DEPRECATED
 		depends on BR2_EXT_BINUTILS_VERSION_2_17
 		bool "binutils 2.17"
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-18 16:52 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2008-12-18 16:52 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-18 16:52:00 +0000 (Thu, 18 Dec 2008)
New Revision: 24449

Log:
toolchain/binutils: fix non-sysroot build

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-18 08:16:32 UTC (rev 24448)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-18 16:52:00 UTC (rev 24449)
@@ -109,8 +109,8 @@
 		--build=$(GNU_HOST_NAME) \
 		--host=$(GNU_HOST_NAME) \
 		--target=$(REAL_GNU_TARGET_NAME) \
-		--mandir=/usr/share/man \
-		--infodir=/usr/share/info \
+		--mandir=$(BR2_SYSROOT_PREFIX)/usr/share/man \
+		--infodir=$(BR2_SYSROOT_PREFIX)/usr/share/info \
 		$(BR2_CONFIGURE_DEVEL_SYSROOT) \
 		$(BR2_CONFIGURE_STAGING_SYSROOT) \
 		$(DISABLE_NLS) \

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-09 11:38 egtvedt at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: egtvedt at uclibc.org @ 2008-12-09 11:38 UTC (permalink / raw)
  To: buildroot

Author: egtvedt
Date: 2008-12-09 03:38:52 -0800 (Tue, 09 Dec 2008)
New Revision: 24345

Log:
binutils: revert bad commit 24343

This reverst the commit 24343, the original state was indeed correct. Blame
goes to my bad sight and too hasty decisions.



Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 10:23:43 UTC (rev 24344)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 11:38:52 UTC (rev 24345)
@@ -54,7 +54,7 @@
 BINUTILS_NO_MPFR:=y
 endif
 
-ifndef $(BINUTILS_NO_MPFR)
+ifndef BINUTILS_NO_MPFR
 BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
 	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2008-12-09 10:33     ` Bernhard Reutner-Fischer
@ 2008-12-09 11:35       ` Hans-Christian Egtvedt
  0 siblings, 0 replies; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2008-12-09 11:35 UTC (permalink / raw)
  To: buildroot

On Tue, 9 Dec 2008 11:33:24 +0100
Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> wrote:

> On Tue, Dec 09, 2008 at 11:30:08AM +0100, Hans-Christian Egtvedt
> wrote:
> >On Tue, 9 Dec 2008 11:23:32 +0100
> >Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> wrote:
> >
> >> On Tue, Dec 09, 2008 at 02:09:15AM -0800, egtvedt at uclibc.org wrote:
> >> >Author: egtvedt
> >> >Date: 2008-12-09 02:09:15 -0800 (Tue, 09 Dec 2008)
> >> >New Revision: 24343
> >> >
> >> >Log:
> >> >binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set
> >> >
> >> >Make the ifndef check the actual variable, typo bug.
> >> 
> >> What are you trying to do or "fix"?
> >>
> >
> >So the ifndef is not supposed to look at the actual variable? Just
> >some text which happens to be exactly the same as a variable which
> >might be set above?
> 
> I suspect you're confusing "ifdef" with "ifeq", aren't you.
> Please look carefully at
> $ grep NO_MPFR toolchain/binutils/binutils.mk
> 

Argh, I was, sorry :( I'll revert the commit.

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-09 10:41 Hans-Christian Egtvedt
  0 siblings, 0 replies; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2008-12-09 10:41 UTC (permalink / raw)
  To: buildroot

> Author: jacmet
> Date: 2008-12-05 07:27:42 -0800 (Fri, 05 Dec 2008)
> New Revision: 24288
>
> Log:
> toolchain/binutils: honour HAVE_MANPAGES / HAVE_INFOPAGES
> 
> Based on b157db55 in Bernhard's tree.
> 
> Modified:
>    trunk/buildroot/toolchain/binutils/binutils.mk
>
> 
> Changeset:
> Modified: trunk/buildroot/toolchain/binutils/binutils.mk
> ===================================================================
> --- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05
> 15:27:38 UTC (rev 24287) +++
> trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05
> 15:27:42 UTC (rev 24288) @@ -106,6 +106,8 @@ --build=$(GNU_HOST_NAME) \
>  		--host=$(GNU_HOST_NAME) \
>  		--target=$(REAL_GNU_TARGET_NAME) \
> +		--mandir=/usr/share/man \
> +		--infodir=/usr/share/info \
> 

Sure this is correct? I get an error about binutils trying to install
manpages into my systems /usr/share/man directory. And I do not have
write permissions there. Is it intended to go into $(STAGING_DIR)?

<snipp>

PS! Sorry for leaving out In-Reply-To, I could not find the tag
in the archive.

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2008-12-09 10:30   ` Hans-Christian Egtvedt
@ 2008-12-09 10:33     ` Bernhard Reutner-Fischer
  2008-12-09 11:35       ` Hans-Christian Egtvedt
  0 siblings, 1 reply; 52+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-12-09 10:33 UTC (permalink / raw)
  To: buildroot

On Tue, Dec 09, 2008 at 11:30:08AM +0100, Hans-Christian Egtvedt wrote:
>On Tue, 9 Dec 2008 11:23:32 +0100
>Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> wrote:
>
>> On Tue, Dec 09, 2008 at 02:09:15AM -0800, egtvedt at uclibc.org wrote:
>> >Author: egtvedt
>> >Date: 2008-12-09 02:09:15 -0800 (Tue, 09 Dec 2008)
>> >New Revision: 24343
>> >
>> >Log:
>> >binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set
>> >
>> >Make the ifndef check the actual variable, typo bug.
>> 
>> What are you trying to do or "fix"?
>>
>
>So the ifndef is not supposed to look at the actual variable? Just some
>text which happens to be exactly the same as a variable which might be
>set above?

I suspect you're confusing "ifdef" with "ifeq", aren't you.
Please look carefully at
$ grep NO_MPFR toolchain/binutils/binutils.mk

see?

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2008-12-09 10:23 ` Bernhard Reutner-Fischer
@ 2008-12-09 10:30   ` Hans-Christian Egtvedt
  2008-12-09 10:33     ` Bernhard Reutner-Fischer
  0 siblings, 1 reply; 52+ messages in thread
From: Hans-Christian Egtvedt @ 2008-12-09 10:30 UTC (permalink / raw)
  To: buildroot

On Tue, 9 Dec 2008 11:23:32 +0100
Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> wrote:

> On Tue, Dec 09, 2008 at 02:09:15AM -0800, egtvedt at uclibc.org wrote:
> >Author: egtvedt
> >Date: 2008-12-09 02:09:15 -0800 (Tue, 09 Dec 2008)
> >New Revision: 24343
> >
> >Log:
> >binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set
> >
> >Make the ifndef check the actual variable, typo bug.
> 
> What are you trying to do or "fix"?
>

So the ifndef is not supposed to look at the actual variable? Just some
text which happens to be exactly the same as a variable which might be
set above?

-- 
Best regards,
Hans-Christian Egtvedt

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2008-12-09 10:09 egtvedt at uclibc.org
@ 2008-12-09 10:23 ` Bernhard Reutner-Fischer
  2008-12-09 10:30   ` Hans-Christian Egtvedt
  0 siblings, 1 reply; 52+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-12-09 10:23 UTC (permalink / raw)
  To: buildroot

On Tue, Dec 09, 2008 at 02:09:15AM -0800, egtvedt at uclibc.org wrote:
>Author: egtvedt
>Date: 2008-12-09 02:09:15 -0800 (Tue, 09 Dec 2008)
>New Revision: 24343
>
>Log:
>binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set
>
>Make the ifndef check the actual variable, typo bug.

What are you trying to do or "fix"?
>
>
>
>Modified:
>   trunk/buildroot/toolchain/binutils/binutils.mk
>
>
>Changeset:
>Modified: trunk/buildroot/toolchain/binutils/binutils.mk
>===================================================================
>--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 10:04:47 UTC (rev 24342)
>+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 10:09:15 UTC (rev 24343)
>@@ -54,7 +54,7 @@
> BINUTILS_NO_MPFR:=y
> endif
> 
>-ifndef BINUTILS_NO_MPFR
>+ifndef $(BINUTILS_NO_MPFR)
> BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
> 	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
> 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-09 10:09 egtvedt at uclibc.org
  2008-12-09 10:23 ` Bernhard Reutner-Fischer
  0 siblings, 1 reply; 52+ messages in thread
From: egtvedt at uclibc.org @ 2008-12-09 10:09 UTC (permalink / raw)
  To: buildroot

Author: egtvedt
Date: 2008-12-09 02:09:15 -0800 (Tue, 09 Dec 2008)
New Revision: 24343

Log:
binutils: fix typo for detecting if BINUTILS_NO_MPFR is not set

Make the ifndef check the actual variable, typo bug.



Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 10:04:47 UTC (rev 24342)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-09 10:09:15 UTC (rev 24343)
@@ -54,7 +54,7 @@
 BINUTILS_NO_MPFR:=y
 endif
 
-ifndef BINUTILS_NO_MPFR
+ifndef $(BINUTILS_NO_MPFR)
 BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
 	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-05 15:27 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2008-12-05 15:27 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-05 07:27:42 -0800 (Fri, 05 Dec 2008)
New Revision: 24288

Log:
toolchain/binutils: honour HAVE_MANPAGES / HAVE_INFOPAGES

Based on b157db55 in Bernhard's tree.

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05 15:27:38 UTC (rev 24287)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05 15:27:42 UTC (rev 24288)
@@ -106,6 +106,8 @@
 		--build=$(GNU_HOST_NAME) \
 		--host=$(GNU_HOST_NAME) \
 		--target=$(REAL_GNU_TARGET_NAME) \
+		--mandir=/usr/share/man \
+		--infodir=/usr/share/info \
 		$(BR2_CONFIGURE_DEVEL_SYSROOT) \
 		$(BR2_CONFIGURE_STAGING_SYSROOT) \
 		$(DISABLE_NLS) \
@@ -158,6 +160,8 @@
 		--build=$(GNU_HOST_NAME) \
 		--host=$(REAL_GNU_TARGET_NAME) \
 		--target=$(REAL_GNU_TARGET_NAME) \
+		--mandir=/usr/share/man \
+		--infodir=/usr/share/info \
 		$(DISABLE_NLS) \
 		$(MULTILIB) \
 		$(BINUTILS_TARGET_CONFIG_OPTIONS) \
@@ -174,8 +178,13 @@
 	$(MAKE) DESTDIR=$(TARGET_DIR) \
 		tooldir=/usr build_tooldir=/usr \
 		-C $(BINUTILS_DIR2) install
-	#rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
-	#	$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
+ifneq ($(BR2_HAVE_MANPAGES),y)
+	rm -rf $(TARGET_DIR)/usr/man
+endif
+ifneq ($(BR2_HAVE_INFOPAGES),y)
+	rm -rf $(TARGET_DIR)/usr/info
+endif
+	rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/share/doc
 	-$(STRIPCMD) $(TARGET_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin/* > /dev/null 2>&1
 	-$(STRIPCMD) $(TARGET_DIR)/usr/bin/* > /dev/null 2>&1
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-12-05 15:27 jacmet at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: jacmet at uclibc.org @ 2008-12-05 15:27 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-12-05 07:27:38 -0800 (Fri, 05 Dec 2008)
New Revision: 24287

Log:
toolchain/binutils: let make expand wildcards instead of the shell

Based on f97ce837 in Bernhard's tree.

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05 15:27:35 UTC (rev 24286)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-12-05 15:27:38 UTC (rev 24287)
@@ -132,17 +132,16 @@
 binutils-source: $(DL_DIR)/$(BINUTILS_SOURCE)
 
 binutils-clean:
-	rm -rf $(STAGING_DIR)/usr/bin/*{ar,as,ld,nm,objdump,ranlib,strip} \
-		$(STAGING_DIR)/usr/lib/{libiberty*,ldscripts}
 	-$(MAKE) -C $(BINUTILS_DIR1) DESTDIR=$(STAGING_DIR) \
 		tooldir=/usr build_tooldir=/usr uninstall
 	-$(MAKE) -C $(BINUTILS_DIR1) clean
+	rm -rf $(wildcard $(patsubst %,$(STAGING_DIR)/usr/bin/*%,ar as ld nm objdump ranlib strip c++filt)) \
+		$(wildcard $(patsubst %,$(STAGING_DIR)/usr/lib/%*,libiberty ldscripts))
 
 binutils-dirclean:
 	rm -rf $(BINUTILS_DIR1)
 
 
-
 #############################################################
 #
 # build binutils for use on the target system
@@ -183,12 +182,9 @@
 binutils_target: $(BINUTILS_TARGET_PREREQ) $(TARGET_DIR)/usr/bin/ld
 
 binutils_target-clean:
-	(cd $(TARGET_DIR)/usr/bin; \
-		rm -f addr2line ar as gprof ld nm objcopy \
-		      objdump ranlib readelf size strings strip; \
-	)
-	rm -f $(TARGET_DIR)/bin/$(REAL_GNU_TARGET_NAME)*
 	-$(MAKE) -C $(BINUTILS_DIR2) clean
+	rm -f $(TARGET_DIR)/bin/$(REAL_GNU_TARGET_NAME)* \
+		$(addprefix $(TARGET_DIR)/usr/bin/, addr2line ar as gprof ld nm objcopy objdump ranlib readelf size strings strip c++filt)
 
 binutils_target-dirclean:
 	rm -rf $(BINUTILS_DIR2)

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
       [not found]   ` <46a136670803110914l7cf179c6m5c866f53b4963bbf@mail.gmail.com>
@ 2008-03-11 16:42     ` Nigel Kukard
  0 siblings, 0 replies; 52+ messages in thread
From: Nigel Kukard @ 2008-03-11 16:42 UTC (permalink / raw)
  To: buildroot



> The build will fail because the path has two /gnu parts in it.

How does this not affect all the other packages and only binutils?

As you can see from the grep below, there are quite a number of packages
using SITE:=mirror/gnu/ and not SITE:=mirror/

Maybe I'm missing something?

-N

> 
> On Tue, Mar 11, 2008 at 11:54 AM, Nigel Kukard <nkukard@lbsd.net>
> wrote:
>         
>         > Author: ninevoltz
>         > Date: 2008-03-11 08:49:09 -0700 (Tue, 11 Mar 2008)
>         > New Revision: 21293
>         >
>         > Log:
>         > fixed path problem
>         >
>         > Modified:
>         >    trunk/buildroot/toolchain/binutils/binutils.mk
>         >
>         >
>         > Changeset:
>         > Modified: trunk/buildroot/toolchain/binutils/binutils.mk
>         >
>         ===================================================================
>         
>         
>         I added /gnu/  because most of the other packages have it.
>         
>         grep -r '$(BR2_GNU_MIRROR)/gnu' buildroot/
>         
>         The path will be invalid if you remove it?
>         
>         
>         _______________________________________________
>         buildroot mailing list
>         buildroot at uclibc.org
>         http://busybox.net/mailman/listinfo/buildroot

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
Url : http://busybox.net/lists/buildroot/attachments/20080311/3e7c45e3/attachment-0001.pgp 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2008-03-11 15:49 ninevoltz at uclibc.org
@ 2008-03-11 15:54 ` Nigel Kukard
       [not found]   ` <46a136670803110914l7cf179c6m5c866f53b4963bbf@mail.gmail.com>
  0 siblings, 1 reply; 52+ messages in thread
From: Nigel Kukard @ 2008-03-11 15:54 UTC (permalink / raw)
  To: buildroot


> Author: ninevoltz
> Date: 2008-03-11 08:49:09 -0700 (Tue, 11 Mar 2008)
> New Revision: 21293
> 
> Log:
> fixed path problem
> 
> Modified:
>    trunk/buildroot/toolchain/binutils/binutils.mk
> 
> 
> Changeset:
> Modified: trunk/buildroot/toolchain/binutils/binutils.mk
> ===================================================================

I added /gnu/  because most of the other packages have it.

grep -r '$(BR2_GNU_MIRROR)/gnu' buildroot/

The path will be invalid if you remove it?

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
Url : http://busybox.net/lists/buildroot/attachments/20080311/c107deef/attachment.pgp 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2008-03-11 15:49 ninevoltz at uclibc.org
  2008-03-11 15:54 ` Nigel Kukard
  0 siblings, 1 reply; 52+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-11 15:49 UTC (permalink / raw)
  To: buildroot

Author: ninevoltz
Date: 2008-03-11 08:49:09 -0700 (Tue, 11 Mar 2008)
New Revision: 21293

Log:
fixed path problem

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2008-03-11 13:32:27 UTC (rev 21292)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2008-03-11 15:49:09 UTC (rev 21293)
@@ -10,29 +10,29 @@
 #"))
 BINUTILS_SITE:=ftp://ftp.kernel.org/pub/linux/devel/binutils
 ifeq ($(BINUTILS_VERSION),2.18)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 endif
 ifeq ($(BINUTILS_VERSION),2.17)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 endif
 ifeq ($(BINUTILS_VERSION),2.16)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.16.1)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.15)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.14)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.13)
-BINUTILS_SITE:=$(BR2_GNU_MIRROR)/gnu/binutils/
+BINUTILS_SITE:=$(BR2_GNU_MIRROR)/binutils/
 BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.15.97)

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-09-17 12:42 ulf at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: ulf at uclibc.org @ 2007-09-17 12:42 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-09-17 05:42:56 -0700 (Mon, 17 Sep 2007)
New Revision: 19869

Log:
Don't break AVR32 toolchain by hiding binutils-2.17

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2007-09-17 12:40:42 UTC (rev 19868)
+++ trunk/buildroot/toolchain/binutils/Config.in	2007-09-17 12:42:56 UTC (rev 19869)
@@ -41,7 +41,7 @@
 		bool "binutils 2.16.91.0.7"
 
 	config BR2_BINUTILS_VERSION_2_17
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends BR2_avr32 || !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_2

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-09-17 11:19 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-09-17 11:19 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-09-17 04:19:04 -0700 (Mon, 17 Sep 2007)
New Revision: 19864

Log:
- add binutils-2.18 and binutils-2.18.50.0.1


Added:
   trunk/buildroot/toolchain/binutils/2.18.50.0.1/
   trunk/buildroot/toolchain/binutils/2.18/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.18 (from rev 19861, trunk/buildroot/toolchain/binutils/2.17.50.0.17)

Copied: trunk/buildroot/toolchain/binutils/2.18.50.0.1 (from rev 19861, trunk/buildroot/toolchain/binutils/2.17.50.0.17)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2007-09-17 09:26:47 UTC (rev 19863)
+++ trunk/buildroot/toolchain/binutils/Config.in	2007-09-17 11:19:04 UTC (rev 19864)
@@ -21,7 +21,7 @@
 		bool "binutils 2.15.94.0.2.2"
 
 	config BR2_BINUTILS_VERSION_2_16_1
-		depends !BR2_avr32 && !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.16.1"
 
 	config BR2_BINUTILS_VERSION_2_16_90_0_3
@@ -37,11 +37,11 @@
 		bool "binutils 2.16.91.0.6"
 
 	config BR2_BINUTILS_VERSION_2_16_91_0_7
-		depends !BR2_avr32 && !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.16.91.0.7"
 
 	config BR2_BINUTILS_VERSION_2_17
-		depends !BR2_nios2
+		depends !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_2
@@ -81,7 +81,7 @@
 		bool "binutils 2.17.50.0.10"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_12
-		depends !BR2_avr32 && !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.12"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_14
@@ -93,8 +93,16 @@
 		bool "binutils 2.17.50.0.16"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_17
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
+		bool "binutils 2.17.50.0.17"
+
+	config BR2_BINUTILS_VERSION_2_18
 		depends !BR2_avr32 && !BR2_nios2
-		bool "binutils 2.17.50.0.17"
+		bool "binutils 2.18"
+
+	config BR2_BINUTILS_VERSION_2_18_50_0_1
+		depends !BR2_avr32 && !BR2_nios2
+		bool "binutils 2.18.50.0.1"
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -121,9 +129,12 @@
 	default "2.17.50.0.14"    if BR2_BINUTILS_VERSION_2_17_50_0_14
 	default "2.17.50.0.16"    if BR2_BINUTILS_VERSION_2_17_50_0_16
 	default "2.17.50.0.17"    if BR2_BINUTILS_VERSION_2_17_50_0_17
+	default "2.18"            if BR2_BINUTILS_VERSION_2_18
+	default "2.18.50.0.1"     if BR2_BINUTILS_VERSION_2_18_50_0_1
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"
 	default ""
 	help
-	  Any additional binutils options you may want to include ...
+	  Any additional binutils options you may want to include.
+

Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2007-09-17 09:26:47 UTC (rev 19863)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2007-09-17 11:19:04 UTC (rev 19864)
@@ -9,6 +9,9 @@
 EXTRA_BINUTILS_CONFIG_OPTIONS=$(strip $(subst ",, $(BR2_EXTRA_BINUTILS_CONFIG_OPTIONS)))
 #"))
 BINUTILS_SITE:=ftp://ftp.kernel.org/pub/linux/devel/binutils
+ifeq ($(BINUTILS_VERSION),2.18)
+BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+endif
 ifeq ($(BINUTILS_VERSION),2.17)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
 endif

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-09-01 16:37 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-09-01 16:37 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-09-01 09:37:55 -0700 (Sat, 01 Sep 2007)
New Revision: 19746

Log:
- precaution when looking at GCC_VERSION


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2007-09-01 12:21:42 UTC (rev 19745)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2007-09-01 16:37:55 UTC (rev 19746)
@@ -41,10 +41,10 @@
 BINUTILS_HOST_PREREQ:=
 BINUTILS_TARGET_PREREQ:=
 
-ifeq ($(findstring 3.,$(GCC_VERSION)),3.)
+ifeq ($(findstring x3.,x$(GCC_VERSION)),x3.)
 BINUTILS_NO_MPFR:=y
 endif
-ifeq ($(findstring 4.0,$(GCC_VERSION)),4.0)
+ifeq ($(findstring x4.0,x$(GCC_VERSION)),x4.0)
 BINUTILS_NO_MPFR:=y
 endif
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-08-22  9:22 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-08-22  9:22 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-08-22 02:22:32 -0700 (Wed, 22 Aug 2007)
New Revision: 19635

Log:
- drop circular dependency


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2007-08-22 09:22:07 UTC (rev 19634)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2007-08-22 09:22:32 UTC (rev 19635)
@@ -125,7 +125,7 @@
 	#	tooldir=/usr build_tooldir=/usr install
 	#rm -f $(STAGING_DIR)/usr/bin/{ar,as,ld,nm,objdump,ranlib,strip}
 
-binutils: dependencies uclibc-configured $(BINUTILS_HOST_PREREQ) $(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-ld
+binutils: uclibc-configured $(BINUTILS_HOST_PREREQ) $(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-ld
 
 binutils-source: $(DL_DIR)/$(BINUTILS_SOURCE)
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2007-08-21 13:32     ` Bernhard Fischer
@ 2007-08-21 13:48       ` Thiago A. Corrêa
  0 siblings, 0 replies; 52+ messages in thread
From: Thiago A. Corrêa @ 2007-08-21 13:48 UTC (permalink / raw)
  To: buildroot

Hi,

   Well, if someone is willing to do a quick script to check the
whitespace stuff, I would say let him. It's not like one is loosing
anything, and it makes it easier to make sure. Though one can be
careful enough to avoid the whitespace issue, automated checks (and
checks alone, not fixups! ) is A Good Thing (tm) imho. It could even
be used in SVN hooks to deny commits that are invalid, but I'm not
quite sure if it's possible to apply it just to Makefiles and *.mk.

   Just my 2 euro cents :)

On 8/21/07, Bernhard Fischer <rep.dot.nop@gmail.com> wrote:
> On Mon, Aug 20, 2007 at 08:18:46PM +0200, Cristian Ionescu-Idbohrn wrote:
> >On Mon, 20 Aug 2007, Ulf Samuelsson wrote:
> >
> >> Thanks, maybe we should have a script which is periodically run to find
> >> the white space stuff and remove it.
> >
> >Easiest is to avoid putting it there, IMHO.
>
> Agree. Not adding code that breaks the established style is the proper
> thing to do. Automated fixup is not a solution nor desirable. It's not
> that avoiding silly whitespace damage should be _that_ hard (modulo in
> an X11 impl or the like ;).
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
>

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2007-08-20 18:18   ` Cristian Ionescu-Idbohrn
@ 2007-08-21 13:32     ` Bernhard Fischer
  2007-08-21 13:48       ` Thiago A. Corrêa
  0 siblings, 1 reply; 52+ messages in thread
From: Bernhard Fischer @ 2007-08-21 13:32 UTC (permalink / raw)
  To: buildroot

On Mon, Aug 20, 2007 at 08:18:46PM +0200, Cristian Ionescu-Idbohrn wrote:
>On Mon, 20 Aug 2007, Ulf Samuelsson wrote:
>
>> Thanks, maybe we should have a script which is periodically run to find
>> the white space stuff and remove it.
>
>Easiest is to avoid putting it there, IMHO.

Agree. Not adding code that breaks the established style is the proper
thing to do. Automated fixup is not a solution nor desirable. It's not
that avoiding silly whitespace damage should be _that_ hard (modulo in
an X11 impl or the like ;).

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2007-08-20 14:52 ` Ulf Samuelsson
@ 2007-08-20 18:18   ` Cristian Ionescu-Idbohrn
  2007-08-21 13:32     ` Bernhard Fischer
  0 siblings, 1 reply; 52+ messages in thread
From: Cristian Ionescu-Idbohrn @ 2007-08-20 18:18 UTC (permalink / raw)
  To: buildroot

On Mon, 20 Aug 2007, Ulf Samuelsson wrote:

> Thanks, maybe we should have a script which is periodically run to find
> the white space stuff and remove it.

Easiest is to avoid putting it there, IMHO.


Cheers,

-- 
Cristian

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
  2007-08-20 13:00 aldot at uclibc.org
@ 2007-08-20 14:52 ` Ulf Samuelsson
  2007-08-20 18:18   ` Cristian Ionescu-Idbohrn
  0 siblings, 1 reply; 52+ messages in thread
From: Ulf Samuelsson @ 2007-08-20 14:52 UTC (permalink / raw)
  To: buildroot

----- Original Message ----- 
From: <aldot@uclibc.org>
To: <buildroot@uclibc.org>
Sent: Monday, August 20, 2007 3:00 PM
Subject: [Buildroot] svn commit: trunk/buildroot/toolchain/binutils


> Author: aldot
> Date: 2007-08-20 06:00:14 -0700 (Mon, 20 Aug 2007)
> New Revision: 19590
> 
> Log:
> - whitespace fixes
> 
> 
> Modified:
>   trunk/buildroot/toolchain/binutils/binutils.mk
> 
> 
> Changeset:
> Modified: trunk/buildroot/toolchain/binutils/binutils.mk
...
> 
> _______________________________________________


Thanks, maybe we should have a script which is periodically run to find
the white space stuff and remove it.


Best Regards
Ulf Samuelsson

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-08-20 13:00 aldot at uclibc.org
  2007-08-20 14:52 ` Ulf Samuelsson
  0 siblings, 1 reply; 52+ messages in thread
From: aldot at uclibc.org @ 2007-08-20 13:00 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-08-20 06:00:14 -0700 (Mon, 20 Aug 2007)
New Revision: 19590

Log:
- whitespace fixes


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2007-08-20 09:25:47 UTC (rev 19589)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2007-08-20 13:00:14 UTC (rev 19590)
@@ -62,13 +62,13 @@
 BINUTILS_TARGET_CONFIG_OPTIONS+=--with-mpfr="$(MPFR_TARGET_DIR)"
 endif
 
-ifeq	($(BR2_TOOLCHAIN_NORMAL),)
+ifeq ($(BR2_TOOLCHAIN_NORMAL),)
 BINUTILS_SITE:=$(VENDOR_SITE)
 endif
 
 BINUTILS_OFFICIAL_VERSION:=$(BINUTILS_VERSION)$(VENDOR_SUFFIX)$(VENDOR_BINUTILS_RELEASE)
 
-ifeq	($(BR2_TOOLCHAIN_NORMAL),y)
+ifeq ($(BR2_TOOLCHAIN_NORMAL),y)
 BINUTILS_PATCH_DIR:=toolchain/binutils/$(BINUTILS_VERSION)
 else
 BINUTILS_PATCH_DIR:=$(VENDOR_PATCH_DIR)/binutils-$(BINUTILS_OFFICIAL_VERSION)

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-08-17 23:06 ulf at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: ulf at uclibc.org @ 2007-08-17 23:06 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-08-17 16:06:25 -0700 (Fri, 17 Aug 2007)
New Revision: 19551

Log:
Add binutils dependencies on AVR32

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2007-08-17 19:21:12 UTC (rev 19550)
+++ trunk/buildroot/toolchain/binutils/Config.in	2007-08-17 23:06:25 UTC (rev 19551)
@@ -9,35 +9,35 @@
 	  Select the version of binutils you wish to use.
 
 	config BR2_BINUTILS_VERSION_2_14_90_0_8
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.14.90.0.8"
 
 	config BR2_BINUTILS_VERSION_2_15
-		depends BR2_DEPRECATED
+		depends !BR2_avr32 &&  BR2_DEPRECATED
 		bool "binutils 2.15"
 
 	config BR2_BINUTILS_VERSION_2_15_94_0_2_2
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.15.94.0.2.2"
 
 	config BR2_BINUTILS_VERSION_2_16_1
-		depends !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2
 		bool "binutils 2.16.1"
 
 	config BR2_BINUTILS_VERSION_2_16_90_0_3
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.16.90.0.3"
 
 	config BR2_BINUTILS_VERSION_2_16_91_0_5
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.16.91.0.5"
 
 	config BR2_BINUTILS_VERSION_2_16_91_0_6
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.16.91.0.6"
 
 	config BR2_BINUTILS_VERSION_2_16_91_0_7
-		depends !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2
 		bool "binutils 2.16.91.0.7"
 
 	config BR2_BINUTILS_VERSION_2_17
@@ -45,55 +45,55 @@
 		bool "binutils 2.17"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_2
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.2"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_3
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.3"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_4
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.4"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_5
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.5"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_6
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.6"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_7
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.7"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_8
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.8"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_9
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.9"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_10
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.10"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_12
-		depends !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2
 		bool "binutils 2.17.50.0.12"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_14
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.14"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_16
-		depends !BR2_nios2 && BR2_DEPRECATED
+		depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.16"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_17
-		depends !BR2_nios2
+		depends !BR2_avr32 && !BR2_nios2
 		bool "binutils 2.17.50.0.17"
 endchoice
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-05-15 11:28 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-05-15 11:28 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-05-15 04:28:58 -0700 (Tue, 15 May 2007)
New Revision: 18624

Log:
- add 2.17.50.0.16


Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.16/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.16 (from rev 18611, trunk/buildroot/toolchain/binutils/2.17.50.0.14)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2007-05-15 11:25:41 UTC (rev 18623)
+++ trunk/buildroot/toolchain/binutils/Config.in	2007-05-15 11:28:58 UTC (rev 18624)
@@ -77,7 +77,7 @@
 		bool "binutils 2.17.50.0.9"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_10
-		depends !BR2_nios2
+		depends !BR2_nios2 && BR2_DEPRECATED
 		bool "binutils 2.17.50.0.10"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_12
@@ -85,8 +85,12 @@
 		bool "binutils 2.17.50.0.12"
 
 	config BR2_BINUTILS_VERSION_2_17_50_0_14
+		depends !BR2_nios2 && BR2_DEPRECATED
+		bool "binutils 2.17.50.0.14"
+
+	config BR2_BINUTILS_VERSION_2_17_50_0_16
 		depends !BR2_nios2
-		bool "binutils 2.17.50.0.14"
+		bool "binutils 2.17.50.0.16"
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -111,6 +115,7 @@
 	default "2.17.50.0.10"    if BR2_BINUTILS_VERSION_2_17_50_0_10
 	default "2.17.50.0.12"    if BR2_BINUTILS_VERSION_2_17_50_0_12
 	default "2.17.50.0.14"    if BR2_BINUTILS_VERSION_2_17_50_0_14
+	default "2.17.50.0.16"    if BR2_BINUTILS_VERSION_2_17_50_0_16
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-01-28 16:38 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-01-28 16:38 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-01-28 08:38:48 -0800 (Sun, 28 Jan 2007)
New Revision: 17602

Log:
- fix prereq of current binutils wrt gmp


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2007-01-28 16:07:45 UTC (rev 17601)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2007-01-28 16:38:48 UTC (rev 17602)
@@ -14,27 +14,33 @@
 endif
 ifeq ($(BINUTILS_VERSION),2.16)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.16.1)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.15)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.14)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.13)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+BINUTILS_NO_MPFR:=y
 endif
 ifeq ($(BINUTILS_VERSION),2.15.97)
 BINUTILS_SITE:=ftp://sources.redhat.com/pub/binutils/snapshots/
+BINUTILS_NO_MPFR:=y
 endif
 
 # We do not rely on the host's gmp/mpfr but use a known working one
-BINUTILS_HOST_PREREQ:= #nothing
-BINUTILS_TARGET_PREREQ:= #nothing
-ifeq ($(BR2_BINUTILS_VERSION_2_17_50_0_9),y)
+BINUTILS_HOST_PREREQ:=
+BINUTILS_TARGET_PREREQ:=
+ifndef BINUTILS_NO_MPFR
 
 BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp.so \
 	$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr.so

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2007-01-16 13:24 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2007-01-16 13:24 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-01-16 05:24:47 -0800 (Tue, 16 Jan 2007)
New Revision: 17325

Log:
- bump version


Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.9/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.9 (from rev 17324, trunk/buildroot/toolchain/binutils/2.17.50.0.8)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2007-01-16 09:35:11 UTC (rev 17324)
+++ trunk/buildroot/toolchain/binutils/Config.in	2007-01-16 13:24:47 UTC (rev 17325)
@@ -71,6 +71,10 @@
 		depends !BR2_nios2
 		bool "binutils 2.17.50.0.8"
 
+	config BR2_BINUTILS_VERSION_2_17_50_0_9
+		depends !BR2_nios2
+		bool "binutils 2.17.50.0.9"
+
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -91,6 +95,7 @@
 	default "2.17.50.0.6"     if BR2_BINUTILS_VERSION_2_17_50_0_6
 	default "2.17.50.0.7"     if BR2_BINUTILS_VERSION_2_17_50_0_7
 	default "2.17.50.0.8"     if BR2_BINUTILS_VERSION_2_17_50_0_8
+	default "2.17.50.0.9"     if BR2_BINUTILS_VERSION_2_17_50_0_9
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-12-13 23:18 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2006-12-13 23:18 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-12-13 15:18:02 -0800 (Wed, 13 Dec 2006)
New Revision: 16910

Log:
- Pass the correct compiler when building the target binutils.


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2006-12-13 23:08:48 UTC (rev 16909)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2006-12-13 23:18:02 UTC (rev 16910)
@@ -101,6 +101,7 @@
 $(BINUTILS_DIR2)/.configured: $(BINUTILS_DIR)/.patched
 	mkdir -p $(BINUTILS_DIR2)
 	(cd $(BINUTILS_DIR2); \
+		CC_FOR_BUILD="$(HOSTCC)" \
 		PATH=$(TARGET_PATH) \
 		CFLAGS="$(TARGET_CFLAGS)" \
 		CFLAGS_FOR_BUILD="-O2 -g" \

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-12-13 19:55 aldot at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: aldot at uclibc.org @ 2006-12-13 19:55 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-12-13 11:55:27 -0800 (Wed, 13 Dec 2006)
New Revision: 16902

Log:
- Build binutils with sysroot support.


Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2006-12-13 18:24:48 UTC (rev 16901)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2006-12-13 19:55:27 UTC (rev 16902)
@@ -62,6 +62,8 @@
 		--build=$(GNU_HOST_NAME) \
 		--host=$(GNU_HOST_NAME) \
 		--target=$(REAL_GNU_TARGET_NAME) \
+		--with-build-sysroot="$(TOOL_BUILD_DIR)/uClibc_dev/" \
+		--with-sysroot="$(TOOL_BUILD_DIR)/uClibc_dev/" \
 		$(DISABLE_NLS) \
 		$(MULTILIB) \
 		--disable-werror \
@@ -77,7 +79,7 @@
 $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/bin/ld: $(BINUTILS_DIR1)/binutils/objdump
 	$(MAKE) -C $(BINUTILS_DIR1) install
 
-binutils: dependencies $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/bin/ld
+binutils: dependencies uclibc-configured $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/bin/ld
 
 binutils-source: $(DL_DIR)/$(BINUTILS_SOURCE)
 

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-12-02 19:02 vapier at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: vapier at uclibc.org @ 2006-12-02 19:02 UTC (permalink / raw)
  To: buildroot

Author: vapier
Date: 2006-12-02 11:02:21 -0800 (Sat, 02 Dec 2006)
New Revision: 16764

Log:
ver bump

Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.8/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.8 (from rev 16762, trunk/buildroot/toolchain/binutils/2.17.50.0.7)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2006-12-02 19:01:10 UTC (rev 16763)
+++ trunk/buildroot/toolchain/binutils/Config.in	2006-12-02 19:02:21 UTC (rev 16764)
@@ -67,6 +67,10 @@
 		depends !BR2_nios2
 		bool "binutils 2.17.50.0.7"
 
+	config BR2_BINUTILS_VERSION_2_17_50_0_8
+		depends !BR2_nios2
+		bool "binutils 2.17.50.0.8"
+
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -86,6 +90,7 @@
 	default "2.17.50.0.5"     if BR2_BINUTILS_VERSION_2_17_50_0_5
 	default "2.17.50.0.6"     if BR2_BINUTILS_VERSION_2_17_50_0_6
 	default "2.17.50.0.7"     if BR2_BINUTILS_VERSION_2_17_50_0_7
+	default "2.17.50.0.8"     if BR2_BINUTILS_VERSION_2_17_50_0_8
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-10-21  5:34 vapier at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: vapier at uclibc.org @ 2006-10-21  5:34 UTC (permalink / raw)
  To: buildroot

Author: vapier
Date: 2006-10-20 22:33:59 -0700 (Fri, 20 Oct 2006)
New Revision: 16418

Log:
2.17.50.0.6 ver bump

Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.6/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.6 (from rev 16417, trunk/buildroot/toolchain/binutils/2.17.50.0.5)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2006-10-20 23:48:30 UTC (rev 16417)
+++ trunk/buildroot/toolchain/binutils/Config.in	2006-10-21 05:33:59 UTC (rev 16418)
@@ -59,6 +59,10 @@
 		depends !BR2_nios2
 		bool "binutils 2.17.50.0.5"
 
+	config BR2_BINUTILS_VERSION_2_17_50_0_6
+		depends !BR2_nios2
+		bool "binutils 2.17.50.0.6"
+
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -76,6 +80,7 @@
 	default "2.17.50.0.3"     if BR2_BINUTILS_VERSION_2_17_50_0_3
 	default "2.17.50.0.4"     if BR2_BINUTILS_VERSION_2_17_50_0_4
 	default "2.17.50.0.5"     if BR2_BINUTILS_VERSION_2_17_50_0_5
+	default "2.17.50.0.6"     if BR2_BINUTILS_VERSION_2_17_50_0_6
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-09-27 22:48 vapier at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: vapier at uclibc.org @ 2006-09-27 22:48 UTC (permalink / raw)
  To: buildroot

Author: vapier
Date: 2006-09-27 15:48:57 -0700 (Wed, 27 Sep 2006)
New Revision: 16241

Log:
2.17.50.0.5 ver bump

Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.5/

Modified:
   trunk/buildroot/toolchain/binutils/Config.in


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.5 (from rev 16240, trunk/buildroot/toolchain/binutils/2.17.50.0.4)

Modified: trunk/buildroot/toolchain/binutils/Config.in
===================================================================
--- trunk/buildroot/toolchain/binutils/Config.in	2006-09-27 22:44:48 UTC (rev 16240)
+++ trunk/buildroot/toolchain/binutils/Config.in	2006-09-27 22:48:57 UTC (rev 16241)
@@ -55,6 +55,10 @@
 		depends !BR2_nios2
 		bool "binutils 2.17.50.0.4"
 
+	config BR2_BINUTILS_VERSION_2_17_50_0_5
+		depends !BR2_nios2
+		bool "binutils 2.17.50.0.5"
+
 endchoice
 
 config BR2_BINUTILS_VERSION
@@ -71,6 +75,7 @@
 	default "2.17.50.0.2"     if BR2_BINUTILS_VERSION_2_17_50_0_2
 	default "2.17.50.0.3"     if BR2_BINUTILS_VERSION_2_17_50_0_3
 	default "2.17.50.0.4"     if BR2_BINUTILS_VERSION_2_17_50_0_4
+	default "2.17.50.0.5"     if BR2_BINUTILS_VERSION_2_17_50_0_5
 
 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
 	string "Additional binutils options"

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-09-27 22:44 vapier at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: vapier at uclibc.org @ 2006-09-27 22:44 UTC (permalink / raw)
  To: buildroot

Author: vapier
Date: 2006-09-27 15:44:48 -0700 (Wed, 27 Sep 2006)
New Revision: 16240

Log:
help if we had the patches for the new version

Added:
   trunk/buildroot/toolchain/binutils/2.17.50.0.4/


Changeset:
Copied: trunk/buildroot/toolchain/binutils/2.17.50.0.4 (from rev 16239, trunk/buildroot/toolchain/binutils/2.17.50.0.3)

^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/toolchain/binutils
@ 2006-08-24  3:40 vapier at uclibc.org
  0 siblings, 0 replies; 52+ messages in thread
From: vapier at uclibc.org @ 2006-08-24  3:40 UTC (permalink / raw)
  To: buildroot

Author: vapier
Date: 2006-08-23 20:40:11 -0700 (Wed, 23 Aug 2006)
New Revision: 15968

Log:
add URL for binutils 2.17 #1002

Modified:
   trunk/buildroot/toolchain/binutils/binutils.mk


Changeset:
Modified: trunk/buildroot/toolchain/binutils/binutils.mk
===================================================================
--- trunk/buildroot/toolchain/binutils/binutils.mk	2006-08-24 03:20:06 UTC (rev 15967)
+++ trunk/buildroot/toolchain/binutils/binutils.mk	2006-08-24 03:40:11 UTC (rev 15968)
@@ -8,6 +8,9 @@
 EXTRA_BINUTILS_CONFIG_OPTIONS:=$(strip $(subst ",, $(BR2_EXTRA_BINUTILS_CONFIG_OPTIONS)))
 #"
 BINUTILS_SITE:=ftp://ftp.kernel.org/pub/linux/devel/binutils
+ifeq ($(BINUTILS_VERSION),2.17)
+BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
+endif
 ifeq ($(BINUTILS_VERSION),2.16)
 BINUTILS_SITE:=ftp://ftp.gnu.org/gnu/binutils/
 endif

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2009-03-09  8:37 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-03 22:09 [Buildroot] svn commit: trunk/buildroot/toolchain/binutils jacmet at uclibc.org
2009-03-06 17:56 ` Thiago A. Corrêa
2009-03-06 21:21   ` Peter Korsgaard
2009-03-08  2:20     ` Thiago A. Corrêa
2009-03-09  5:58       ` Hans-Christian Egtvedt
2009-03-09  8:00         ` Peter Korsgaard
2009-03-09  8:09           ` Hans-Christian Egtvedt
2009-03-09  8:24             ` Peter Korsgaard
2009-03-09  8:37               ` Hans-Christian Egtvedt
  -- strict thread matches above, loose matches on Subject: below --
2009-03-05 13:40 jacmet at uclibc.org
2009-03-03 22:09 jacmet at uclibc.org
2009-02-10 15:48 jacmet at uclibc.org
2009-01-03 16:24 ulf at uclibc.org
2009-01-03  1:06 ulf at uclibc.org
2009-01-03  0:59 ulf at uclibc.org
2009-01-03 15:05 ` Nigel Kukard
2009-01-03 15:02   ` Ulf Samuelsson
2009-01-03 15:15   ` Ulf Samuelsson
2009-01-02 20:30 jacmet at uclibc.org
2008-12-18 16:52 jacmet at uclibc.org
2008-12-09 11:38 egtvedt at uclibc.org
2008-12-09 10:41 Hans-Christian Egtvedt
2008-12-09 10:09 egtvedt at uclibc.org
2008-12-09 10:23 ` Bernhard Reutner-Fischer
2008-12-09 10:30   ` Hans-Christian Egtvedt
2008-12-09 10:33     ` Bernhard Reutner-Fischer
2008-12-09 11:35       ` Hans-Christian Egtvedt
2008-12-05 15:27 jacmet at uclibc.org
2008-12-05 15:27 jacmet at uclibc.org
2008-03-11 15:49 ninevoltz at uclibc.org
2008-03-11 15:54 ` Nigel Kukard
     [not found]   ` <46a136670803110914l7cf179c6m5c866f53b4963bbf@mail.gmail.com>
2008-03-11 16:42     ` Nigel Kukard
2007-09-17 12:42 ulf at uclibc.org
2007-09-17 11:19 aldot at uclibc.org
2007-09-01 16:37 aldot at uclibc.org
2007-08-22  9:22 aldot at uclibc.org
2007-08-20 13:00 aldot at uclibc.org
2007-08-20 14:52 ` Ulf Samuelsson
2007-08-20 18:18   ` Cristian Ionescu-Idbohrn
2007-08-21 13:32     ` Bernhard Fischer
2007-08-21 13:48       ` Thiago A. Corrêa
2007-08-17 23:06 ulf at uclibc.org
2007-05-15 11:28 aldot at uclibc.org
2007-01-28 16:38 aldot at uclibc.org
2007-01-16 13:24 aldot at uclibc.org
2006-12-13 23:18 aldot at uclibc.org
2006-12-13 19:55 aldot at uclibc.org
2006-12-02 19:02 vapier at uclibc.org
2006-10-21  5:34 vapier at uclibc.org
2006-09-27 22:48 vapier at uclibc.org
2006-09-27 22:44 vapier at uclibc.org
2006-08-24  3:40 vapier at uclibc.org

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.