chicken-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-hackers] Chicken 5.1.0 on Debian/armel architecture


From: Peter Bex
Subject: Re: [Chicken-hackers] Chicken 5.1.0 on Debian/armel architecture
Date: Sun, 28 Jul 2019 20:53:10 +0200
User-agent: Mutt/1.10.1 (2018-07-13)

On Sat, Jul 27, 2019 at 10:09:09PM +0200, address@hidden wrote:
> > For now, we can ignore the architectures with a grey background on that
> > page, as they're not full supported by Debian, but the armel fail is
> > serious because it prevents Chicken migration from unstable to testing
> > distribution.

Hi Davide,

This *might* have been fixed with 0f65f998e9af551be9201594651794263f582666.
Could you try to apply that patch and run again on armsel?

Basically, patch chicken.h to fix the cast in C_u_i_s32vector_ref
like this:

-#define C_u_i_s32vector_ref(x, i)       C_fix(((C_u32 
*)C_data_pointer(C_block_item((x), 1)))[ C_unfix(i) ])
+#define C_u_i_s32vector_ref(x, i)       C_fix(((C_s32 
*)C_data_pointer(C_block_item((x), 1)))[ C_unfix(i) ])

Cheers,
Peter

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]