Using stderr in an initialization?

Steve Kargl sgk at troutmask.apl.washington.edu
Fri May 2 22:50:17 UTC 2008


On Sat, May 03, 2008 at 07:43:48AM +1000, Peter Jeremy wrote:
> On Fri, May 02, 2008 at 01:23:56PM -0700, Steve Kargl wrote:
> >static FILEP outfile = {stderr};
> ...
> >troutmask:sgk[204] cc -o z a.c
> >a.c:5: error: initializer element is not constant
> >a.c:5: error: (near initialization for 'outfile')
> 
> The braces are superfluous but the underlying problem is that stderr
> is not a compile-time constant - it's an 'extern FILE *'.
> 
> >clear where such a change be made.  So, anyone have a
> >suggestion on how to change line 5 to satisfy gcc?
> 
> Move the assignment to the start of main():
> >int
> >main(int argc, char *argv[])
> >{
> >	FILE *fp;
> >
> 	outfile = stderr;
> >	if (argc == 2) {
> ...
> 
> If 'outfile' is not visible from main() then you'll need to use some
> sort of initialisation function - either called explicitly from main()
> or via an C++-style implicitly-called initialiser.
> 

I chose the former although I'm not sure if that is the most
appropriate place.  With this change (and few others) I have
successful built the Fortran 77 component of pcc (ie.,
ports/lang/pcc)

dhcp-78-86:kargl[206] cat h.f
      program h
      print *, 'Hello World!'
      end 
dhcp-78-86:kargl[207] ~/work/bin/f77 -v -O -o z h.f -L$HOME/work/lib

 FORTRAN 77 DRIVER, VERSION 1.11,   28 JULY 1978
h.f:
   MAIN h:
  ASM.
LOAD.
dhcp-78-86:kargl[208] ./z
 Hello World!

-- 
Steve


More information about the freebsd-ports mailing list