Re: [Chicken-users] Building Chicken on OS X Lion

2012-09-13 Thread Jim Ursetto
Hans, I've verified that chicken 4.7.0.6 builds, installs and tests out correctly on Lion with Xcode 4.4.1. It works fine with either gcc or clang. Here is my test line: make PLATFORM=macosx PREFIX=$PWD/inst C_COMPILER=clang all install check From your paste, it looks like you're not

Re: [Chicken-users] Building Chicken on OS X Lion

2012-09-13 Thread Hans Nowak
On 9/13/12 1:18 PM, Jim Ursetto wrote: Hans, I've verified that chicken 4.7.0.6 builds, installs and tests out correctly on Lion with Xcode 4.4.1. It works fine with either gcc or clang. Here is my test line: make PLATFORM=macosx PREFIX=$PWD/inst C_COMPILER=clang all install check From

[Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Hans Nowak
Hi, I am still having problems building/installing Chicken on OS X Lion, even with the new version 4.7.0.6 and 4.8rc2. Here is a paste of the output when I do make install; it hangs at loading import libraries. http://paste.call-cc.org/paste?id=a7fd2260fb3540a24db2fbd703607a0555446589 I

Re: [Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Stephen Eilert
Have you got homebrew? It just works for me. == Downloading http://code.call-cc.org/releases/4.7.0/chicken-4.7.0.6.tar.gz 100.0% == make PREFIX=/usr/local/Cellar/chicken/4.7.0.6 PLATFORM=macosx C_COMPILER=cc ARCH=x86-64 ==

Re: [Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Hans Nowak
On 8/31/12 11:22 AM, Christian Kellermann wrote: As I don't have access to a mac I can only guess, the README file mentions that you have to use the following flags for 10.7: make PLATFORM=macosx ARCH=x86-64 This does not really explain why it hangs there, but could you retry with the ARCH

Re: [Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Jim Ursetto
I hope this is not a problem with XCode 4.4.1. I haven't upgraded from XCode 4.3.2 yet. Anyone else have a successful build with 4.4.1? In the meantime if you have some time to kill, you could try building with C_COMPILER=clang. I doubt this will make a difference though. I will try to upgrade

Re: [Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Shawn Rutledge
I just built the 4.8.0 rc3 on Lion with xcode 4.3.3, using clang, like this: CC=clang C_COMPILER=clang make PLATFORM=macosx install Will csc remember to use clang then? Doesn't seem to be any trouble to chicken-install extensions, anyway. On 31 August 2012 19:48, Jim Ursetto

Re: [Chicken-users] Building Chicken on OS X Lion

2012-08-31 Thread Jim Ursetto
On Aug 31, 2012, at 3:36 PM, Shawn Rutledge wrote: I just built the 4.8.0 rc3 on Lion with xcode 4.3.3, using clang, like this: CC=clang C_COMPILER=clang make PLATFORM=macosx install Will csc remember to use clang then? Doesn't seem to be any trouble to chicken-install extensions,