What is the appropriate way of compiling gambit on a 64 bit system? I'm working with gcc 4.0.1 on mac ox 10.5.4 (intel). I tried adding
CFLAGS="-m64"
to ./configure's command line options which almost worked until the build system attempted to actually create the gsi and gsc. It forgot the -m64 options at that point but manually executing the command with -m64 worked fine. After that though, gsc does not seem to compile scheme files with the the -m64 option which prevents them from being loadable unless i explicitely pass gsc
-cc-options "-m64"
Is there a way to make gsc remember this or perhaps am I going about the entire thing incorrectly?
Afficher les réponses par date
On Sep 15, 2008, at 2:50 AM, |/|/ Bendick wrote:
What is the appropriate way of compiling gambit on a 64 bit system?
On my G5 running MacOS X 10.4.11, I configure with
./configure CC='gcc -m64 -mcpu=970'
and that seems to work. Perhaps on an Intel mac something similar would work.
Brad
Thanks, that method cleared things up.
On Mon, Sep 15, 2008 at 8:25 AM, Bradley Lucier lucier@math.purdue.edu wrote:
On Sep 15, 2008, at 2:50 AM, |/|/ Bendick wrote:
What is the appropriate way of compiling gambit on a 64 bit system?
On my G5 running MacOS X 10.4.11, I configure with
./configure CC='gcc -m64 -mcpu=970'
and that seems to work. Perhaps on an Intel mac something similar would work.
Brad