Skip to content
Prev 3814 / 15075 Next

Compiling 2.5.1 on OSX Panther (James Kyle)

I've been able to resolve the symbol errors in my previous post. I  
modified the makefile for src/extras/blas on line #33. First I  
changed the link order of complxblas.o and blas.o. This eliminated  
the _z_abs_ symbol error. Next, I began searching for where xerbal  
was defined:

find $R -name *.o -or *.a -exec nm -f {} \; | grep xerbla

Nothing turned up, so I figured it was in the system vecLib library  
(which it is). I then added -framework path/to/vecLib. I now get a  
lot of "warning: multiple definitions of" type outptut, but it compiles.

The final compile looked like this:
Next error to rear its head is:
I'll continue to document my progress on the list for anyone else who  
may need to do this in the future.

cheers,

james a kyle