Compile Issues Under Mac OSX 10.4.11

Hey Folks,

I’ve been reading through the posts, and the advice given has gotten me out of some sticky spots in the installation process. I am however stuck when I try to make install dtool. Here’s the output:

cd ./src/dtoolbase && make install
make[1]: Nothing to be done for `install'.
cd ./src/dtoolutil && make install
make[1]: Nothing to be done for `install'.
cd ./metalibs/dtool && make install
make[1]: Nothing to be done for `install'.
cd ./src/cppparser && make install
libtool -static -o Opt3-OSX/libcppParser.a Opt3-OSX/cppParser_cppParser_composite1.o Opt3-OSX/cppParser_cppParser_composite2.o Opt3-OSX/cppParser_cppBison.o
libtool: unrecognized option `-static'
Try `libtool --help' for more information.
make[1]: *** [Opt3-OSX/libcppParser.a] Error 1
make: *** [install-cppparser] Error 2

Does anyone have any ideas? Please let me know if I have to furnish more info.

Thanks~

Hmm. Seems like you have a different version of libtool installed on your machine than I do.

My libtool knows about the -static option:

newt:~> libtool
libtool: no output file specified (specify with -o output)
Usage: libtool -static [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-sacLT]
Usage: libtool -dynamic [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-o output] [-install_name name] [-compatibility_version #] [-current_version #] [-seg1addr 0x#] [-segs_read_only_addr 0x#] [-segs_read_write_addr 0x#] [-seg_addr_table <filename>] [-seg_addr_table_filename <file_system_path>] [-all_load] [-noall_load]

Which version do you have? Mine claims to be this:

newt:~> libtool -V
Apple Computer, Inc. version cctools-622.3

Maybe you have more than one version of libtool installed?

newt:~> which libtool
/usr/bin/libtool

David