From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22894 invoked by alias); 8 Nov 2005 14:55:24 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 22876 invoked by uid 22791); 8 Nov 2005 14:55:21 -0000 Received: from jsc-ems-vws03.jsc.nasa.gov (HELO jsc-ems-vws03.jsc.nasa.gov) (139.169.39.50) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Tue, 08 Nov 2005 14:55:21 +0000 Received: from jsc-smtp02.jsc.nasa.gov ([139.169.16.60]) by 139.169.39.50 with InterScan Messaging Security Suite; Tue, 08 Nov 2005 08:55:15 -0600 Received: by jsc-smtp02.jsc.nasa.gov with Internet Mail Service (5.5.2657.72) id ; Tue, 8 Nov 2005 08:55:15 -0600 Message-ID: From: "JARVIS, KANDY S. (JSC-KX) (ESCG)" To: 'Pierre-Matthieu anglade' , gcc-help@gcc.gnu.org Subject: RE: compiling Date: Tue, 08 Nov 2005 14:55:00 -0000 MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2005-11/txt/msg00099.txt.bz2 Yes, advice from another user took me down that same path. Indeed it isn't a compiling issue but rather that my home directory is not in the path. Thank you for your suggestion though! -----Original Message----- From: Pierre-Matthieu anglade [mailto:pierre.matthieu.anglade@gmail.com] Sent: Tuesday, November 08, 2005 2:52 AM To: JARVIS, KANDY S. (JSC-KX) (ESCG); gcc-help@gcc.gnu.org Subject: Re: compiling What happens when you try to execute your band.exe? What is the error message? Two frequent error: -if you try: > f77 -o band.exe *.f then > band.exe the file may not be found. try > ./band.exe On some system your compiler is not compatible with the defaults runtime libs. (it is the cas with my redhat fc4 :-( ) Then you migh which to do: > f77 -static -o band.exe *.f > ./band.exe -- Pierre-Matthieu Anglade