[Chicken-users] Re : Re: package fmt crash on Windows 7 64-bits

2014-12-13 Thread fuhz
Hi Christian, I got some internet issues recently, but everything is fine now, i am back in the real world :D I reproduced the issue on Windows 7 64 bits. Build script: http://paste.call-cc.org/paste?id=ebeda32cf764bda4ece3eb4e93abc86f3e865594 Build log: http://paste.call-cc.org/paste?id=995e6

[Chicken-users] Re : Re: package fmt crash on Windows 7 64-bits

2014-12-14 Thread fuhz
Christian, The issue is not specific to fmt package. Opengl package has the same issue. Did I make an obvious mistake? C:\working-dir\chicken-portable-clean\build\bin>csi CHICKEN (c) 2008-2014, The Chicken Team (c) 2000-2007, Felix L. Winkelmann Version 4.9.0.1 (stability/4.9.0) (rev 8b3189b) w

Re: [Chicken-users] Re : Re: package fmt crash on Windows 7 64-bits

2014-12-14 Thread Christian Kellermann
Hi! * f...@laposte.net [141213 14:59]: > > I believe it's a 64-bit related issue, because I didn't reproduce > this problem on Windows 32 bits with the same steps (another toolchain > and ARCH=x86). On 64 bit Windows the apply hack is disabled, we need a port of that. Not having the apply hack

Re: [Chicken-users] Re : Re: package fmt crash on Windows 7 64-bits

2014-12-15 Thread combier
Hi, You are right, apply-hack.x86-64.S looks to be disabled. I didn't notice before. Does it mean that Windows 64 bits is not fully supported? I tried to add Apply-hack.x86-64.S in the build, but it does not compile correctly. Strange, the syntax of the gcc assembly is different from Windows

Re: [Chicken-users] Re : Re: package fmt crash on Windows 7 64-bits

2014-12-15 Thread Christian Kellermann
combier writes: > You are right, apply-hack.x86-64.S looks to be disabled. I didn't > notice before. > Does it mean that Windows 64 bits is not fully supported? It means that someone has to write a apply hack using Windows' ABI for 64bit. On 32bit we can get away with SysV but not on 64 bit...