public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/25953]  New: Help on the solution for the large file unit numbers problem
@ 2006-01-25  0:49 luiscasinhas at mail dot telepac dot pt
  2006-01-25  0:53 ` [Bug fortran/25953] " pinskia at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: luiscasinhas at mail dot telepac dot pt @ 2006-01-25  0:49 UTC (permalink / raw)
  To: gcc-bugs

Hello:

This my help request is related with the solution that the GNU site provides
for the large file unit numbers problem (please refer to
http://gcc.gnu.org/onlinedocs/gcc-3.4.1/g77/Large-File-Unit-Numbers.html#Large%20File%20Unit%20Numbers)

So this is my problem:
I recently updated my PC with the FC4 (2.6.14-1.1656_FC4) and i have gcc
gcc-4.0.2-8.fc4:

[casinhas@localhost ~]$ gcc -v
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-libgcj-multifile
--enable-languages=c,c++,objc,java,f95,ada --enable-java-awt=gtk
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre
--host=i386-redhat-linux
Thread model: posix
gcc version 4.0.2 20051125 (Red Hat 4.0.2-8)

and apparently the g77 fortran compiler that comes with this gcc package is:

[casinhas@localhost ~]$ g77 -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --with-system-zlib --enable-__cxa_atexit
--enable-languages=c,c++,f77 --disable-libgcj --host=i386-redhat-linux
Thread model: posix
gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-47.fc4)

The code that i need to compile sometimes opens more than 99 file units, wich
is the limit for the MXUNIT value of g77 compilers.

Reading the solution posted on
http://gcc.gnu.org/onlinedocs/gcc-3.4.1/g77/Large-File-Unit-Numbers.html#Large%20File%20Unit%20Numbers

I am not able to find the mentioned fio.h header file neither on the gcc
folders on my PC neither on the source code of the gcc-4.0.2-8.fc4 packace
(gcc-4.0.2-20051126.tar.bz2). Hence i would like to ask for your help on the
following questions:

1st-Is the g77 compiler (gcc version 3.2.3 20030502 (Red Hat Linux
3.2.3-47.fc4)) the current fortran compiler component of the current gcc
package (gcc version 4.0.2 20051125 (Red Hat 4.0.2-8))?

2nd- If not, is there a g77 version 4.0.2-8, just like the gfortran, also
provided by the gcc package? 

3rd- With this current gcc package where can i find the mentioned fio.h header
file? Or, even better, how should i proceed in order to have my current g77
compiler with the MXUNIT values higher then 99?

Best regards
Luis Casinhas

P.S. - I do appologise if this is not the correct way to post a bug. Actualy
this is more a help request then a bug report (wich was already made by some
one els)


-- 
           Summary: Help on the solution for the large file unit numbers
                    problem
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: luiscasinhas at mail dot telepac dot pt


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
@ 2006-01-25  0:53 ` pinskia at gcc dot gnu dot org
  2006-01-25 22:57 ` luiscasinhas at mail dot telepac dot pt
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-25  0:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-01-25 00:53 -------
First since you are getting your compilers from redhat, you should talk to them
first.
But second gfortran does not have this limit as far as I know.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
  2006-01-25  0:53 ` [Bug fortran/25953] " pinskia at gcc dot gnu dot org
@ 2006-01-25 22:57 ` luiscasinhas at mail dot telepac dot pt
  2006-01-25 23:04 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: luiscasinhas at mail dot telepac dot pt @ 2006-01-25 22:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from luiscasinhas at mail dot telepac dot pt  2006-01-25 22:57 -------
Sure! I also posted this problem on the redhat bugzilla.

One thing though:

I donwloaded the gcc source package ( gcc-4.0.2-20051126.tar.bz2) from the GNU
site, not from redhat. As i stated on my post, i could not find the fio.h
header file that would allow me to fix this problem on the source package from
GNU (this is why i actualy posted the problem here and not on redhat.

Nevertheless, thanks for your help and atention.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
  2006-01-25  0:53 ` [Bug fortran/25953] " pinskia at gcc dot gnu dot org
  2006-01-25 22:57 ` luiscasinhas at mail dot telepac dot pt
@ 2006-01-25 23:04 ` pinskia at gcc dot gnu dot org
  2006-03-01  7:28 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-25 23:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-01-25 23:04 -------
(In reply to comment #2)
> I donwloaded the gcc source package ( gcc-4.0.2-20051126.tar.bz2) from the GNU
> site, not from redhat. As i stated on my post, i could not find the fio.h
> header file that would allow me to fix this problem on the source package from
> GNU (this is why i actualy posted the problem here and not on redhat.

Right as mentioned 4.0.0 and above does not have this limitation at all.  You
should try your program without recompiling GCC.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
                   ` (2 preceding siblings ...)
  2006-01-25 23:04 ` pinskia at gcc dot gnu dot org
@ 2006-03-01  7:28 ` jvdelisle at gcc dot gnu dot org
  2006-03-02 15:03 ` luiscasinhas at mail dot telepac dot pt
  2006-03-05  6:00 ` jvdelisle at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-01  7:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jvdelisle at gcc dot gnu dot org  2006-03-01 07:28 -------
Can this PR go away?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
                   ` (3 preceding siblings ...)
  2006-03-01  7:28 ` jvdelisle at gcc dot gnu dot org
@ 2006-03-02 15:03 ` luiscasinhas at mail dot telepac dot pt
  2006-03-05  6:00 ` jvdelisle at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: luiscasinhas at mail dot telepac dot pt @ 2006-03-02 15:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from luiscasinhas at mail dot telepac dot pt  2006-03-02 15:03 -------
Sure! Please feel free to change the current bug status to whatever status you
may see fit.

Best regards


-- 

luiscasinhas at mail dot telepac dot pt changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |UNCONFIRMED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug fortran/25953] Help on the solution for the large file unit numbers problem
  2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
                   ` (4 preceding siblings ...)
  2006-03-02 15:03 ` luiscasinhas at mail dot telepac dot pt
@ 2006-03-05  6:00 ` jvdelisle at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-03-05  6:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jvdelisle at gcc dot gnu dot org  2006-03-05 06:00 -------
Not a bug. gfortran supports unit numbers upto 999.


-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25953


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-03-05  6:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-25  0:49 [Bug fortran/25953] New: Help on the solution for the large file unit numbers problem luiscasinhas at mail dot telepac dot pt
2006-01-25  0:53 ` [Bug fortran/25953] " pinskia at gcc dot gnu dot org
2006-01-25 22:57 ` luiscasinhas at mail dot telepac dot pt
2006-01-25 23:04 ` pinskia at gcc dot gnu dot org
2006-03-01  7:28 ` jvdelisle at gcc dot gnu dot org
2006-03-02 15:03 ` luiscasinhas at mail dot telepac dot pt
2006-03-05  6:00 ` jvdelisle at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).