Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libbroadvoice: Not available on BR2_arc
@ 2016-01-17 11:42 Bernd Kuhls
  2016-01-17 20:18 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Bernd Kuhls @ 2016-01-17 11:42 UTC (permalink / raw)
  To: buildroot

The only available buildroot-toolchain for arc is gcc-4.8 which has a
bug when compiling libbroadvoice:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049

This patch can be removed when gcc-4.9+ is available for arc.

Fixes
http://autobuild.buildroot.net/results/4a1/4a1fd92d1ce4963d3e282ea2dc8f0f6c5db4f1e1/
http://autobuild.buildroot.net/results/ce3/ce3be7d27489647a98d8932c5bcabd08c845187b/
http://autobuild.buildroot.net/results/988/988bd189bab37a03c037160d6758774d4aa6c8a0/
and many others

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libbroadvoice/Config.in | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/libbroadvoice/Config.in b/package/libbroadvoice/Config.in
index d695df0..740342e 100644
--- a/package/libbroadvoice/Config.in
+++ b/package/libbroadvoice/Config.in
@@ -1,5 +1,8 @@
 config BR2_PACKAGE_LIBBROADVOICE
 	bool "libbroadvoice"
+	# broken with gcc-4.8 which is the only available toolchain on arc
+	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049
+	depends on !BR2_arc
 	help
 	  broadvoice - a library for the BroadVoice 16 and 32 speech
 	  codecs
-- 
2.7.0.rc3

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

* [Buildroot] [PATCH 1/1] package/libbroadvoice: Not available on BR2_arc
  2016-01-17 11:42 [Buildroot] [PATCH 1/1] package/libbroadvoice: Not available on BR2_arc Bernd Kuhls
@ 2016-01-17 20:18 ` Arnout Vandecappelle
  2016-01-17 20:24   ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2016-01-17 20:18 UTC (permalink / raw)
  To: buildroot

On 17-01-16 12:42, Bernd Kuhls wrote:
> The only available buildroot-toolchain for arc is gcc-4.8 which has a
> bug when compiling libbroadvoice:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049
> 
> This patch can be removed when gcc-4.9+ is available for arc.
> 
> Fixes
> http://autobuild.buildroot.net/results/4a1/4a1fd92d1ce4963d3e282ea2dc8f0f6c5db4f1e1/
> http://autobuild.buildroot.net/results/ce3/ce3be7d27489647a98d8932c5bcabd08c845187b/
> http://autobuild.buildroot.net/results/988/988bd189bab37a03c037160d6758774d4aa6c8a0/
> and many others
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/libbroadvoice/Config.in | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/package/libbroadvoice/Config.in b/package/libbroadvoice/Config.in
> index d695df0..740342e 100644
> --- a/package/libbroadvoice/Config.in
> +++ b/package/libbroadvoice/Config.in
> @@ -1,5 +1,8 @@
>  config BR2_PACKAGE_LIBBROADVOICE
>  	bool "libbroadvoice"
> +	# broken with gcc-4.8 which is the only available toolchain on arc
> +	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049
> +	depends on !BR2_arc

 To be future-safe, we can already write:

	depends on !BR2_arc || BR2_TOOLCHAIN_GCC_AT_LEAST_4_9

 Regards,
 Arnout
>  	help
>  	  broadvoice - a library for the BroadVoice 16 and 32 speech
>  	  codecs
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH 1/1] package/libbroadvoice: Not available on BR2_arc
  2016-01-17 20:18 ` Arnout Vandecappelle
@ 2016-01-17 20:24   ` Arnout Vandecappelle
  0 siblings, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2016-01-17 20:24 UTC (permalink / raw)
  To: buildroot

On 17-01-16 21:18, Arnout Vandecappelle wrote:
> On 17-01-16 12:42, Bernd Kuhls wrote:
>> The only available buildroot-toolchain for arc is gcc-4.8 which has a
>> bug when compiling libbroadvoice:
>> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049
>>
>> This patch can be removed when gcc-4.9+ is available for arc.
>>
>> Fixes
>> http://autobuild.buildroot.net/results/4a1/4a1fd92d1ce4963d3e282ea2dc8f0f6c5db4f1e1/
>> http://autobuild.buildroot.net/results/ce3/ce3be7d27489647a98d8932c5bcabd08c845187b/
>> http://autobuild.buildroot.net/results/988/988bd189bab37a03c037160d6758774d4aa6c8a0/
>> and many others
>>
>> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
>> ---
>>  package/libbroadvoice/Config.in | 3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/package/libbroadvoice/Config.in b/package/libbroadvoice/Config.in
>> index d695df0..740342e 100644
>> --- a/package/libbroadvoice/Config.in
>> +++ b/package/libbroadvoice/Config.in
>> @@ -1,5 +1,8 @@
>>  config BR2_PACKAGE_LIBBROADVOICE
>>  	bool "libbroadvoice"
>> +	# broken with gcc-4.8 which is the only available toolchain on arc
>> +	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59049
>> +	depends on !BR2_arc
> 
>  To be future-safe, we can already write:
> 
> 	depends on !BR2_arc || BR2_TOOLCHAIN_GCC_AT_LEAST_4_9

 Sorry for the dupe, I shouldn't do FIFO reading :-)

 Regards,
 Arnout


> 
>  Regards,
>  Arnout
>>  	help
>>  	  broadvoice - a library for the BroadVoice 16 and 32 speech
>>  	  codecs
>>
> 
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

end of thread, other threads:[~2016-01-17 20:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-17 11:42 [Buildroot] [PATCH 1/1] package/libbroadvoice: Not available on BR2_arc Bernd Kuhls
2016-01-17 20:18 ` Arnout Vandecappelle
2016-01-17 20:24   ` Arnout Vandecappelle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox