Hi all,
I am trying to compile an old code that was written on SGI machine; the code has 3 extern function which I assume should be part of external Lib. The functions names are:figauss,fifconv and fifwrite . I will appreciate any help
Thanks
Hi all,
I am trying to compile an old code that was written on SGI machine; the code has 3 extern function which I assume should be part of external Lib. The functions names are:figauss,fifconv and fifwrite . I will appreciate any help
Thanks
You are missing code. The code you compiled had another piece of code that goes with it. Or it was compiled into an archive ( .a file) or a .o file.
To locate the one you need try -
find /path/to/old/code -name '*.o' -o -name '*.a' | \
while read file
do
nm "$file" | grep -q 'fifwrite'
if [[ $? -eq 0 ]; then
echo "$file"
fi
done