This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Arraysizes in g77


> Note that I need the exact error message to make sense out of 
> a complete compilable example, with the exact source that you 

      parameter (maxn=20000)
      parameter (mxbits=(maxn*(maxn+1)+29)/30)
      integer vst(maxn*maxn),wst(maxn*maxn)
      integer*2 marks(mxbits),force2(2*mxbits)
      common /bigstuff/ vst,wst,marks,force2
      end

# g77-3.1 -O3 -fno-automatic -ffixed-line-length-none -static -o test
test.f  
test.f:3: size of variable `bigstuff_' is too large

Alex


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]