Fortran compilation on multiple systems -
I have a fortran program, which I can compile on all three operating systems using f77, f95 or ifort They are i386, ia64 and x86_64 systems). However, I just want to be able to compile two types of executables, so that I can share the program and not the code. When I try to compile on a computer and try to run compiled binary on the other, I get the error message can not execute the binary file
Does anyone have any ideas, What can i do in
If you want the machine to run them natively, you can not do this, you have three different - Different architecture, so you need three separate binary.
However , the ability to run the i386 code in x86_64 (more commonly called AMD64), is a small performance penalty, so if you leave 64-bit-NIS If you are ready, you can theoretically leave MD 64 binary and use i386 on that machine. To make this work you have to install the i386 emulation environment on the machine.
It is possible that ia64 supports some similarity; I do not know I64
Comments
Post a Comment