Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 4/4] wine: more hostarch
@ 2015-03-21 15:38 André Hentschel
  2015-03-21 17:34 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: André Hentschel @ 2015-03-21 15:38 UTC (permalink / raw)
  To: buildroot

The tools from host-wine build on those architectures.

Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
---
 package/wine/Config.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/wine/Config.in b/package/wine/Config.in
index 26de143..d1510e1 100644
--- a/package/wine/Config.in
+++ b/package/wine/Config.in
@@ -2,7 +2,9 @@ config BR2_PACKAGE_WINE
 	bool "wine"
 	depends on BR2_TOOLCHAIN_USES_GLIBC
 	# Wine only builds on certain architectures
-	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
+	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
+	           BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
+	           BR2_HOSTARCH = "aarch64"
 	# Wine has much CPU specific code and mostly makes sense on x86
 	depends on BR2_i386
 	help
-- 
1.9.1

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

* [Buildroot] [PATCH 4/4] wine: more hostarch
  2015-03-21 15:38 [Buildroot] [PATCH 4/4] wine: more hostarch André Hentschel
@ 2015-03-21 17:34 ` Arnout Vandecappelle
  2015-03-22 15:19   ` André Hentschel
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2015-03-21 17:34 UTC (permalink / raw)
  To: buildroot

On 21/03/15 16:38, Andr? Hentschel wrote:
> The tools from host-wine build on those architectures.
> 
> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>

 Do you also volunteer to provide an autobuilder on arm and aarch64? :-)

> ---
>  package/wine/Config.in | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/package/wine/Config.in b/package/wine/Config.in
> index 26de143..d1510e1 100644
> --- a/package/wine/Config.in
> +++ b/package/wine/Config.in
> @@ -2,7 +2,9 @@ config BR2_PACKAGE_WINE
>  	bool "wine"
>  	depends on BR2_TOOLCHAIN_USES_GLIBC
>  	# Wine only builds on certain architectures
> -	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
> +	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
> +	           BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \

 powerpc but not powerpc64?


 Regards,
 Arnout

> +	           BR2_HOSTARCH = "aarch64"
>  	# Wine has much CPU specific code and mostly makes sense on x86
>  	depends on BR2_i386
>  	help
> 


-- 
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:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH 4/4] wine: more hostarch
  2015-03-21 17:34 ` Arnout Vandecappelle
@ 2015-03-22 15:19   ` André Hentschel
  0 siblings, 0 replies; 3+ messages in thread
From: André Hentschel @ 2015-03-22 15:19 UTC (permalink / raw)
  To: buildroot

Am 21.03.2015 um 18:34 schrieb Arnout Vandecappelle:
> On 21/03/15 16:38, Andr? Hentschel wrote:
>> The tools from host-wine build on those architectures.
>>
>> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
> 
>  Do you also volunteer to provide an autobuilder on arm and aarch64? :-)

if someone guides me to set one up I?ll do it for ARM on an cubox-i4pro, but i'm not sure about how many packages would support that.
would that be useful?

>> ---
>>  package/wine/Config.in | 4 +++-
>>  1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/package/wine/Config.in b/package/wine/Config.in
>> index 26de143..d1510e1 100644
>> --- a/package/wine/Config.in
>> +++ b/package/wine/Config.in
>> @@ -2,7 +2,9 @@ config BR2_PACKAGE_WINE
>>  	bool "wine"
>>  	depends on BR2_TOOLCHAIN_USES_GLIBC
>>  	# Wine only builds on certain architectures
>> -	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
>> +	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
>> +	           BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
> 
>  powerpc but not powerpc64?

yes, powerpc64 is not supported yet

>  Regards,
>  Arnout
> 
>> +	           BR2_HOSTARCH = "aarch64"
>>  	# Wine has much CPU specific code and mostly makes sense on x86
>>  	depends on BR2_i386
>>  	help
>>
> 
> 

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

end of thread, other threads:[~2015-03-22 15:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-21 15:38 [Buildroot] [PATCH 4/4] wine: more hostarch André Hentschel
2015-03-21 17:34 ` Arnout Vandecappelle
2015-03-22 15:19   ` André Hentschel

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