This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
gfortran compiled executable is hanging
- From: Alex Harrison <kids dot love dot monkeys at googlemail dot com>
- To: fortran at gcc dot gnu dot org
- Date: Thu, 11 Aug 2016 10:23:13 +0100
- Subject: gfortran compiled executable is hanging
- Authentication-results: sourceware.org; auth=none
Hi,
I'm trying to run Fortran on my windows machine. I installed via MinGW,
and am using a Cygwin64 terminal emulator. I compiled a simple program,
however when I try to execute the program hangs, with no error messages
or output and I need to exit my terminal and start again.
I am running GNU Fortran 4.9.3, any my program is a simple "hello world"
print out, I'll include the code below. Is there somewhere I can get
help with solving this problem? I couldn't find any public forums for
discussing such problems on the gcc.gnu.org website.
Thanks,
Alex
The program code:
$ more helloworld.f90
program test
Print*, "hello world"
end program