Search Results

0
votes
0answers
93 views

Combining C & Fortran static Libraries

I have a .net project with both C and Fortran sources and I want to produce one static lib. I'm using VS 2008 and Intel VF 10.1. They have to be two separate projects in visual studio so each one m …
1
vote

What Fortran compilers are there?

Intel Fortran is the best. It's heritage can be traced back to the 1960s. Intel bought it from HP and before that HP acquired it from Compaq who got it from Digital Equipment Corp. It was the old r …
2
votes

Learning FORTRAN In the Modern Era

There's something in the original question that I would caution about. You say the code is rife with "performance enhancing improvements". Since Fortran problems are generally of a scientific and m …
1
vote

Private function in Fortran

Private xxx, yyy, zzz real function xxx (v) ... end function xxx integer function yyy() ... end function yyy subroutine zzz ( a,b,c ) ... end subroutine zzz ... other stuff that …
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 …