Re: G95 Trace Back?



Herman D. Knoble <SkipKnobleLESS@xxxxxxxxxxxxxxx> writes:

> Helge: Something's amiss here as I'm running G95 that I just downloaded
> and installed, so I know that it's the lastest one. But it does not support
> the option: -ftrace=full. In fact the documentation and --help does not
> show such an option either?

strange... you may want to check that you dont pick up an earlier
version (g95 --version)? in xp I can do the below with todays executable

--
Helge


E:\avle\g95test>type transfertest.f90
character(432):: data
character(24) :: mold, chars(9)
character(2) tmp
integer(4) ints(54)
data="202020202020202020202020202020202020202020202020554E20202020424D52452&
&020202052434E5520204E4948432046472020524F20204C4120204E4C204D5520202020202&
&020204542202020202043522055522020434E202020202020202049484F46474E415220205&
&54E4C4C424D20202043524520205552434E2020202020204948202020202020474E2020204&
&F462020415220204C4C2020554E2020424D20205245205243202020204E554843202020204&
&E49464720202020524F202020202020202020202020202020202020202020202020"
read(data,'(54z8.8)') ints
chars = transfer(ints,mold,9)
write(*,'(a24)') chars
end

E:\avle\g95test>g95 -ftrace=full transfertest.f90

E:\avle\g95test>a

NUMB ERCR UNCHIN
GF OR AL LN UM
BE RC RU NC
HI NGFO RALLNU MBERC
RU NC HI NG
FO RA LL NU MB ER
CRUN CHIN GFOR


E:\avle\g95test>
E:\avle\g95test>g95 --version
G95 (GCC 4.0.2 (g95!) Nov 19 2005)
Copyright (C) 2002-2005 Free Software Foundation, Inc.

G95 comes with NO WARRANTY, to the extent permitted by law.
You may redistribute copies of G95
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING

E:\avle\g95test>
.



Relevant Pages