Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds
@ 2015-09-20  8:44 Chris Packham
  2015-09-20  9:34 ` Vincent Olivert Riera
  2015-09-20 12:28 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Chris Packham @ 2015-09-20  8:44 UTC (permalink / raw)
  To: buildroot

Fixes the following error when building for a 64-bit target

  ../py/objint_mpz.c:54:5: error: right shift count >= width of type [-Werror]
       (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 4) & DIG_MASK,
       ^
  ../py/objint_mpz.c:54:5: error: initializer element is not constant
  ../py/objint_mpz.c:54:5: error: (near initialization for 'maxsize_dig[4]')

Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
So this is the upstream patch that fixes the build problem and replaces
http://lists.busybox.net/pipermail/buildroot/2015-September/139826.html

 package/micropython/micropython.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/micropython/micropython.mk b/package/micropython/micropython.mk
index 6266882..f2ad5bf 100644
--- a/package/micropython/micropython.mk
+++ b/package/micropython/micropython.mk
@@ -9,6 +9,7 @@ MICROPYTHON_SITE = $(call github,micropython,micropython,$(MICROPYTHON_VERSION))
 MICROPYTHON_LICENSE = MIT
 MICROPYTHON_LICENSE_FILES = LICENSE
 MICROPYTHON_DEPENDENCIES = host-pkgconf libffi
+MICROPYTHON_PATCH = https://github.com/micropython/micropython/commit/8b4fb4fe140e9cf57fcfa258d0d2d6fe19090fc5.patch
 
 # Use fallback implementation for exception handling on architectures that don't
 # have explicit support.
-- 
2.5.0

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

* [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds
  2015-09-20  8:44 [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds Chris Packham
@ 2015-09-20  9:34 ` Vincent Olivert Riera
  2015-09-20 12:28 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Vincent Olivert Riera @ 2015-09-20  9:34 UTC (permalink / raw)
  To: buildroot

Dear Chris Packham,

On 20/09/15 09:44, Chris Packham wrote:
> Fixes the following error when building for a 64-bit target
> 
>    ../py/objint_mpz.c:54:5: error: right shift count >= width of type [-Werror]
>         (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 4) & DIG_MASK,
>         ^
>    ../py/objint_mpz.c:54:5: error: initializer element is not constant
>    ../py/objint_mpz.c:54:5: error: (near initialization for 'maxsize_dig[4]')
> 
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

I have built micropython for MIPS32, MIPS64 n32* and MIPS64 n64. All fine.

*: after applying this patch:

https://github.com/micropython/micropython/pull/1471

Regards,

Vincent.

> ---
> So this is the upstream patch that fixes the build problem and replaces
> http://lists.busybox.net/pipermail/buildroot/2015-September/139826.html
> 
>   package/micropython/micropython.mk | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/package/micropython/micropython.mk b/package/micropython/micropython.mk
> index 6266882..f2ad5bf 100644
> --- a/package/micropython/micropython.mk
> +++ b/package/micropython/micropython.mk
> @@ -9,6 +9,7 @@ MICROPYTHON_SITE = $(call github,micropython,micropython,$(MICROPYTHON_VERSION))
>   MICROPYTHON_LICENSE = MIT
>   MICROPYTHON_LICENSE_FILES = LICENSE
>   MICROPYTHON_DEPENDENCIES = host-pkgconf libffi
> +MICROPYTHON_PATCH = https://github.com/micropython/micropython/commit/8b4fb4fe140e9cf57fcfa258d0d2d6fe19090fc5.patch
>   
>   # Use fallback implementation for exception handling on architectures that don't
>   # have explicit support.
> 

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

* [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds
  2015-09-20  8:44 [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds Chris Packham
  2015-09-20  9:34 ` Vincent Olivert Riera
@ 2015-09-20 12:28 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-09-20 12:28 UTC (permalink / raw)
  To: buildroot

Dear Chris Packham,

On Sun, 20 Sep 2015 20:44:35 +1200, Chris Packham wrote:
> Fixes the following error when building for a 64-bit target
> 
>   ../py/objint_mpz.c:54:5: error: right shift count >= width of type [-Werror]
>        (MP_SSIZE_MAX >> MPZ_DIG_SIZE * 4) & DIG_MASK,
>        ^
>   ../py/objint_mpz.c:54:5: error: initializer element is not constant
>   ../py/objint_mpz.c:54:5: error: (near initialization for 'maxsize_dig[4]')
> 
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> So this is the upstream patch that fixes the build problem and replaces
> http://lists.busybox.net/pipermail/buildroot/2015-September/139826.html

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-09-20 12:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-20  8:44 [Buildroot] [PATCH] micropython: Add upstream patch to fix 64-bit builds Chris Packham
2015-09-20  9:34 ` Vincent Olivert Riera
2015-09-20 12:28 ` Thomas Petazzoni

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