strange problem with fortran


simba
06-29-2006, 07:52 AM
am looking for ant hlep or suggestions. I have a fortan progam runinng it on supercomputer SX-6. the small size progam compiles well and run without problem, but when i increase the size of the program, the porgram compiles well but whe i try to run it stops abort with the follwing message:

: Command not found.

: Command not found.
/home/simba/work2/test8
: No such file or directory.

what could be wrong? ahy ideas ?

!alan
04-06-2007, 09:45 AM
hi,
On UNIX systems, when you compile a fortran program without specifying an output file, an executable file called a.out is created in the current working directory. Since the current working directory "." is not in your default path, you need to type:
./a.out
to run the program.