All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/poco: disable build for riscv
@ 2019-02-19 18:50 Baruch Siach
  2019-02-19 19:53 ` Peter Seiderer
  2019-02-22 12:20 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Baruch Siach @ 2019-02-19 18:50 UTC (permalink / raw)
  To: buildroot

poco does not support the riscv target.

Fixes:
http://autobuild.buildroot.net/results/9a8/9a8213c502df53222eafc3ecd2fcfa36db20950b/
http://autobuild.buildroot.net/results/dd4/dd48cac70e8cb697b42ee51561902df81edcea40/
http://autobuild.buildroot.net/results/030/030c6cc8e2a59b015f8f3793d76234a2ef4ab772/

Cc: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/poco/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/poco/Config.in b/package/poco/Config.in
index 75e31b7e1e7d..7e1257146c81 100644
--- a/package/poco/Config.in
+++ b/package/poco/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_POCO
 	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
 	depends on !BR2_STATIC_LIBS # dlopen()
 	depends on !(BR2_arc || BR2_microblaze || BR2_mipsel \
-		|| BR2_or1k || BR2_xtensa)
+		|| BR2_or1k || BR2_riscv || BR2_xtensa)
 	select BR2_PACKAGE_ZLIB
 	select BR2_PACKAGE_PCRE
 	help
-- 
2.20.1

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

* [Buildroot] [PATCH] package/poco: disable build for riscv
  2019-02-19 18:50 [Buildroot] [PATCH] package/poco: disable build for riscv Baruch Siach
@ 2019-02-19 19:53 ` Peter Seiderer
  2019-02-20  6:51   ` Baruch Siach
  2019-02-22 12:20 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Seiderer @ 2019-02-19 19:53 UTC (permalink / raw)
  To: buildroot

Hello Baruch,

On Tue, 19 Feb 2019 20:50:32 +0200, Baruch Siach <baruch@tkos.co.il> wrote:

> poco does not support the riscv target.

Time for an poco update? Version 1.9.1 seems to support riscv64, see [1]....

Regards,
Peter

[1] https://github.com/pocoproject/poco/blob/poco-1.9.1/Foundation/include/Poco/Platform.h#L137

> 
> Fixes:
> http://autobuild.buildroot.net/results/9a8/9a8213c502df53222eafc3ecd2fcfa36db20950b/
> http://autobuild.buildroot.net/results/dd4/dd48cac70e8cb697b42ee51561902df81edcea40/
> http://autobuild.buildroot.net/results/030/030c6cc8e2a59b015f8f3793d76234a2ef4ab772/
> 
> Cc: Yegor Yefremov <yegorslists@googlemail.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/poco/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/poco/Config.in b/package/poco/Config.in
> index 75e31b7e1e7d..7e1257146c81 100644
> --- a/package/poco/Config.in
> +++ b/package/poco/Config.in
> @@ -6,7 +6,7 @@ config BR2_PACKAGE_POCO
>  	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
>  	depends on !BR2_STATIC_LIBS # dlopen()
>  	depends on !(BR2_arc || BR2_microblaze || BR2_mipsel \
> -		|| BR2_or1k || BR2_xtensa)
> +		|| BR2_or1k || BR2_riscv || BR2_xtensa)
>  	select BR2_PACKAGE_ZLIB
>  	select BR2_PACKAGE_PCRE
>  	help

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

* [Buildroot] [PATCH] package/poco: disable build for riscv
  2019-02-19 19:53 ` Peter Seiderer
@ 2019-02-20  6:51   ` Baruch Siach
  0 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach @ 2019-02-20  6:51 UTC (permalink / raw)
  To: buildroot

Hi Peter,

On Tue, Feb 19, 2019 at 08:53:42PM +0100, Peter Seiderer wrote:
> On Tue, 19 Feb 2019 20:50:32 +0200, Baruch Siach <baruch@tkos.co.il> wrote:
> 
> > poco does not support the riscv target.
> 
> Time for an poco update? Version 1.9.1 seems to support riscv64, see [1]....

Maybe for next. This fixes build issue in master.

But anyway, the latest release is 1.9.0, which is still missing riscv support.

baruch

> [1] https://github.com/pocoproject/poco/blob/poco-1.9.1/Foundation/include/Poco/Platform.h#L137
> 
> > Fixes:
> > http://autobuild.buildroot.net/results/9a8/9a8213c502df53222eafc3ecd2fcfa36db20950b/
> > http://autobuild.buildroot.net/results/dd4/dd48cac70e8cb697b42ee51561902df81edcea40/
> > http://autobuild.buildroot.net/results/030/030c6cc8e2a59b015f8f3793d76234a2ef4ab772/
> > 
> > Cc: Yegor Yefremov <yegorslists@googlemail.com>
> > Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> > ---
> >  package/poco/Config.in | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/package/poco/Config.in b/package/poco/Config.in
> > index 75e31b7e1e7d..7e1257146c81 100644
> > --- a/package/poco/Config.in
> > +++ b/package/poco/Config.in
> > @@ -6,7 +6,7 @@ config BR2_PACKAGE_POCO
> >  	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
> >  	depends on !BR2_STATIC_LIBS # dlopen()
> >  	depends on !(BR2_arc || BR2_microblaze || BR2_mipsel \
> > -		|| BR2_or1k || BR2_xtensa)
> > +		|| BR2_or1k || BR2_riscv || BR2_xtensa)
> >  	select BR2_PACKAGE_ZLIB
> >  	select BR2_PACKAGE_PCRE
> >  	help

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH] package/poco: disable build for riscv
  2019-02-19 18:50 [Buildroot] [PATCH] package/poco: disable build for riscv Baruch Siach
  2019-02-19 19:53 ` Peter Seiderer
@ 2019-02-22 12:20 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-02-22 12:20 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > poco does not support the riscv target.
 > Fixes:
 > http://autobuild.buildroot.net/results/9a8/9a8213c502df53222eafc3ecd2fcfa36db20950b/
 > http://autobuild.buildroot.net/results/dd4/dd48cac70e8cb697b42ee51561902df81edcea40/
 > http://autobuild.buildroot.net/results/030/030c6cc8e2a59b015f8f3793d76234a2ef4ab772/

 > Cc: Yegor Yefremov <yegorslists@googlemail.com>
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2018.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-02-22 12:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-19 18:50 [Buildroot] [PATCH] package/poco: disable build for riscv Baruch Siach
2019-02-19 19:53 ` Peter Seiderer
2019-02-20  6:51   ` Baruch Siach
2019-02-22 12:20 ` Peter Korsgaard

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.