0
votes
mtrace for a fortran program
Valgrind is Linux only. For a windows product look at Forcheck.
http://www.forcheck.nl/features.htm
…
2
votes
How can I find out which library is home to a given object?
I have a little lookfor script. Enter lookfor func_name
#!/bin/csh
foreach i (*.o *.a *.so)
echo $i
nm $i | grep -i $1
end
…
