I am trying to compile a piece of software written in Fortran 77. I should point out that I don't know much at all about Fortran, and would really rather not start modifying the code for this software - particularly as I'm not sure what the licensing of the software is, and I don't know if I would be able to redistribute my modified version.
The code compiles fine on OS X and Windows using the g77 compiler that is (fairly easily) available for these systems. However, I cannot get it to work on my Ubuntu distribution, as I can't seem to get hold of g77 for Ubuntu anymore, and if I try and install an old version of it, it seems to muck up my entire GCC installation. I have tried compiling the code with both gfortran and g95, but it doesn't work with either as:
- The code uses real variables as loop indices (yes, I know, bad idea). g95 supports this with the
-freal-loopsoption, but gfortran doesn't. - The code uses real variables to index into arrays, which gfortran will support (with a warning), but g95 won't support.
Can anyone suggest a way to compile this code with those two 'dodgy' features using a modern and easily-available compiler such as g95 or gfortran?
-std=legacy, but I don't know if it will work. See this for more details. – Dan Nov 15 '12 at 21:24realordouble precisionvariables as loop indices and subscripts is completely safe. Yes, I know that many people will say this is a terrible idea but they are wrong. FP calculations on integer values are exact. People who are aware that decimal fractions are usually imprecise without understanding exactly why often simply assume incorrectly that the same issue can arise with integral values. (But they have to have never been fractional.) The JavaScript implementors knew this and useddoublefor integers. See stackoverflow.com/a/9650037/140740 – DigitalRoss Nov 16 '12 at 1:251in the integer part. This limits the range of exactly representable integers to[0, 2^24-1]which is less than the full range of the 32-bitint(there are other exactly representable integers above that range, but they are not consecutive). With double-precision this range is extended to[0, 2^53-1]- less than the full range oflong. – Hristo Iliev Nov 16 '12 at 8:30