Hi Pierre,
Thanks for your answer. To be more precise: which CFLAGS are
required to build Virtuoso Open Source Edition under Mac OS X 10.5
64-bit (Intel Core 2 Duo)?
I have successfully build Virtuoso Open Source Edition under Mac OS
X 10.5 32-bit with the following commands:
CFLAGS="-O -isysroot /Developer/SDKs/MacOSX10.5.sdk -arch i386 -
mmacosx-version-min=10.5"
export CFLAGS
./configure --disable-dependency-tracking
make
sudo make install
but I don't know how to build it to get 64-bit support.
You just replace the -arch i386 in your CFLAGS with -arch x86_64 and
you got yourself a 64bit build.
You can even have both -arch i386 and -arch x86_64 and build a
virtuoso binary that runs in 64bit mode on the latest Core 2 Duo chips
and in 32bit mode on Core Duo which is what the first set of Apple
laptops/minis had.
Patrick