Hi,
I'm trying to port CLAPACK to a DSP and I seem to be running into all sorts of problems. I was wondering if anyone had any advice or experience with this sort of thing.
The platform that I'm targeting is a DSP (with no operating system), so all I have is a C compiler for the target processor, plus basic C libraries. I've managed to build the reference BLAS library and the CLBLAS wrapper library without problems, but I'm having trouble with the F2C library. My problem (I think) is that F2C relies on a lot of things that I don't have for the target processor (sys/types.h, sys/stat.h, the fstat() routine, etc), and it is really intended for target systems with an operating system.
So, I guess my question is: is is possible to build a "bare-bones" version of F2C without all the I/O stuff? One of the READMEs in the install package has a tantalising clue:
"CLAPACK/F2CLIBS/ f2c I/O functions (libI77) and math functions (libF77)"
I guess I'm just after libF77,but the contents of the F2C directory don't give any clues about what that should contain.
Kenny

