From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6512 invoked by alias); 11 Aug 2016 09:37:52 -0000 Mailing-List: contact fortran-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: fortran-owner@gcc.gnu.org Received: (qmail 6497 invoked by uid 89); 11 Aug 2016 09:37:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=HTo:D*googlemail.com, Hx-languages-length:1156, Harrison, harrison X-HELO: mail-wm0-f43.google.com Received: from mail-wm0-f43.google.com (HELO mail-wm0-f43.google.com) (74.125.82.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 11 Aug 2016 09:37:41 +0000 Received: by mail-wm0-f43.google.com with SMTP id d196so2991522wmd.0 for ; Thu, 11 Aug 2016 02:37:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=+sWKERBMSHYktIL8CNT4l5zB8k1gey9ZJ5l0xMMeJ10=; b=XruIgadsSBXq3N92MZFESw8agi2EYoJDTnUKr0NRjEUws53Kh8gOj4iC0Y3c56Z0kr c1e9ChdcBKOwF2lK+ZEcgRukAV94ktDHCUlQkXU+RwV0d1qYAJAzydi0Ow2BL9qgVaAw hFMwPUNqN+jGgX85tWTDIRIjG1CRxHvdcjnQcO3TayHJTtMQ8wfkXpy332R8ZyQ3U/WC DgXDsAOS7bKLMMxZjndHdHrc2nnjKC3BfNrqG9qxEPIiD/XSrSubMcqJwVVAdK1tcW5t V1tj/8Z9/aVGJ9yfv/gmPk1IwWfWNm+7jytmtytTSKikCguD+2cNQVo9y5ui/pOJE14R yd3g== X-Gm-Message-State: AEkoouvsL3xFi4qH+NyGVDWWbyclIHyE3t5qLuxlZYgzoCqrnKwDvcE4441F0dmmqLkXEam4jXS/+HVrQryeAQ== X-Received: by 10.194.187.134 with SMTP id fs6mr8584022wjc.3.1470908258718; Thu, 11 Aug 2016 02:37:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.28.174.68 with HTTP; Thu, 11 Aug 2016 02:37:37 -0700 (PDT) In-Reply-To: <27714621-ec4e-6a88-a4fe-3565e8964dca@googlemail.com> References: <27714621-ec4e-6a88-a4fe-3565e8964dca@googlemail.com> From: Arjen Markus Date: Thu, 11 Aug 2016 09:37:00 -0000 Message-ID: Subject: Re: gfortran compiled executable is hanging To: Alex Harrison Cc: Fortran List Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-08/txt/msg00048.txt.bz2 Hi Alex, comp.lang.fortran would be the place to ask this type of usage questions. But you mention installing via MinGW and using a Cygwin64 terminal emulator. I do not understand this description. Can you try just running a Cygwin64 terminal and compiling your program? I have the feeling that things are terribly mixed. Regards, Arjen 2016-08-11 11:23 GMT+02:00 Alex Harrison : > 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 >