Re: [Chicken-users] check-errors egg error

2009-08-29 Thread Kon Lovett
On Aug 28, 2009, at 10:30 PM, Nicholas Indy Ray wrote: I might be doing something wrong but when doing a check-errors install on chicken 4.1.0 I get a build error. snip chmod a+r /Users/Indy/bin/chicken4/lib/chicken/4/type-checks.setup- info /Users/Indy/bin/chicken4/bin/csc -feature

[Chicken-users] CHICKEN on sparc64-linux

2009-08-29 Thread Thomas Chust
Hello, I just installed the CHICKEN 4.1.5 snapshot on a sparc64-linux machine and thought I would share my experiences: The Debian GNU / Linux I use to run the box has a mixed 32 bit and 64 bit userland on this architecture, so I tried a 64 bit build of CHICKEN first, which is apparently the

[Chicken-users] Re: CHICKEN on sparc64-linux

2009-08-29 Thread Thomas Chust
2009/8/29 Thomas Chust ch...@web.de: [...] The Debian GNU / Linux I use to run the box has a mixed 32 bit and 64 bit userland on this architecture, so I tried a 64 bit build of CHICKEN first, which is apparently the only foreseen alternative: The build not only took ages but also produced a

[Chicken-users] OS X 10.6 (Snow Leopard)

2009-08-29 Thread Derrell Piper
It appears that the native Xcode 3.2 build tools are now 64-bit on 10.6 and config-arch.sh isn't smart enough to distinguish the 64- bitness. As a result, it assembles the 32-bit apply-hack and then fails to construct libchicken.a because there's a mix of 32-bit and 64- bit .o's. To get a

Re: [Chicken-users] OS X 10.6 (Snow Leopard)

2009-08-29 Thread Jim Ursetto
It might be easier to compile with make PLATFORM=macosx ARCH=x86-64 as stated in the README. Jim On Sat, Aug 29, 2009 at 7:35 PM, Derrell Piperd...@electric-loft.org wrote: It appears that the native Xcode 3.2 build tools are now 64-bit on 10.6 and config-arch.sh isn't smart enough to

Re: [Chicken-users] OS X 10.6 (Snow Leopard)

2009-08-29 Thread Jim Ursetto
Is it really true that 10.6 gcc defaults to producing 64-bit binaries? I imagine that would break a lot of traditional UNIX builds. If so then we will need to either have better detection of bittedness or simply force gcc to 32-bit mode unless the ARCH is specified as 64-bit. 64-bit works

Re: [Chicken-users] OS X 10.6 (Snow Leopard)

2009-08-29 Thread Jim Ursetto
OK, we will have to deal with this then. In the meantime, can you confirm that building with ARCH=x86-64 fixes the problem as well? On Sat, Aug 29, 2009 at 11:05 PM, Derrell Piperd...@electric-loft.org wrote: I was pretty surprised myself.  But it seems that's the path they chose: fluffy% gcc