Bug 3023 - EGCS / GCC bug
Summary: EGCS / GCC bug
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: egcs
Version: 6.0
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: David Lawrence
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-05-25 02:34 UTC by kumarsri
Modified: 2008-05-01 15:37 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 1999-05-25 13:57:03 UTC
Embargoed:


Attachments (Terms of Use)

Description kumarsri 1999-05-25 02:34:48 UTC
This looks like a EGCS bug to me:

#include "stdio.h"
FILE *prerror = stderr;
main() {
}

Put the above lines in a.c and type
gcc -c a.c

Gives error - initializer is not a constant

This used to work with Redhat 5.2 and it also works with
SCO Unix, Solaris, IRIX, AIX etc.

Comment 1 Bill Nottingham 1999-05-25 13:57:59 UTC
It's not an egcs bug. It's part of glibc 2.1;
stdin/stdout/stderr are *NOT* constants, so you
can't do initialization like that. Initialize the
filehandle when you use it to stderr if you like...

From the GLIBC FAQ:

I get compiler messages "Initializer element not constant" with
stdin/stdout/stderr. Why?

Constructs like:
    static FILE *InPtr = stdin;
lead to this message. This is correct behaviour with glibc since stdin
is not a constant expression. Please note that a
strict reading of ISO C does not allow above constructs.

One of the advantages of this is that you can assign to stdin, stdout,
and stderr just like any other global variable
(e.g. `stdout = my_stream;'), which can be very useful with custom
streams that you can write with libio (but
beware this is not necessarily portable). The reason to implement it
this way were versioning problems with the
size of the FILE structure.

To fix those programs you've got to initialize the variable at run
time. This can be done, e.g. in main, like:

static FILE *InPtr; int main(void) { InPtr = stdin; }

or by constructors (beware this is gcc specific):

static FILE *InPtr;
static void inPtr_construct (void) __attribute__((constructor));
static void inPtr_construct (void) { InPtr = stdin; }


Note You need to log in before you can comment on or make changes to this bug.