This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: strange compiler behaviour
- From: Tobias dot Schlueter at Physik dot Uni-Muenchen dot DE
- To: Martin Tee <aovb94 at dsl dot pipex dot com>
- Cc: fortran at gcc dot gnu dot org
- Date: Wed, 21 Dec 2005 20:34:56 +0100
- Subject: Re: strange compiler behaviour
- References: <43A9AB8C.8@dsl.pipex.com>
YOur bug report is a bit puzzling, and it works for me.
Quoting Martin Tee <aovb94@dsl.pipex.com>:
> [martin@bingo test]$ gfc -o test alloc.f95
The only thing I can think of is that you're confused about which 'test' gets
executed afterwards, i.e. after you've compiled you get the following on your
screen:
[martin@bingo test]$ test
[martin@bingo test]$
This is to be expected, as 'test' is a program present on every unix-like
system. (Fix: run './test' instead)
Apologies if I misunderstand!
- Tobi