Thread: Compilation errors?

Compilation errors?

From
Dmitry Tkach
Date:
I was trying to build pgsql code, and I keep getting this error:

make[4]: Entering directory `/home/dima/postgres7.3/pgsql/src/interfaces/ecpg/preproc'
make -C ../../../../src/port all
make[5]: Entering directory `/home/dima/postgres7.3/pgsql/src/port'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/home/dima/postgres7.3/pgsql/src/port'
bison -y -d  preproc.y
preproc.y:5560: fatal error: maximum table size (32767) exceeded
make[4]: *** [preproc.h] Error 1


I was building the CVS tip initially when I got this, then I switched to REL7_3_STABLE, but I am still getting the same
problemwith it? 

Any clues? Is it something wrong with my configuration?

I'll appreciate your help with this

Thanks a lot!

Dima


Re: Compilation errors?

From
Joe Conway
Date:
Dmitry Tkach wrote:
> bison -y -d  preproc.y
> preproc.y:5560: fatal error: maximum table size (32767) exceeded
> make[4]: *** [preproc.h] Error 1
>

Looks like you need to upgrade bison. Search the archives for the exact
minimum version, but I'm using 1.75. I think 1.875 is the latest release.

HTH,

Joe



Re: Compilation errors?

From
Stephan Szabo
Date:
On Tue, 25 Feb 2003, Dmitry Tkach wrote:

> I was trying to build pgsql code, and I keep getting this error:
>
> make[4]: Entering directory `/home/dima/postgres7.3/pgsql/src/interfaces/ecpg/preproc'
> make -C ../../../../src/port all
> make[5]: Entering directory `/home/dima/postgres7.3/pgsql/src/port'
> make[5]: Nothing to be done for `all'.
> make[5]: Leaving directory `/home/dima/postgres7.3/pgsql/src/port'
> bison -y -d  preproc.y
> preproc.y:5560: fatal error: maximum table size (32767) exceeded
> make[4]: *** [preproc.h] Error 1
>
>
> I was building the CVS tip initially when I got this, then I switched
> to REL7_3_STABLE, but I am still getting the same problem with it?
>
> Any clues? Is it something wrong with my configuration?

You need to upgrade bison to a newer version (I think 1.5 or better)



Re: Compilation errors?

From
Doug McNaught
Date:
Dmitry Tkach <dmitry@openratings.com> writes:

> I was trying to build pgsql code, and I keep getting this error:
>
> make[4]: Entering directory `/home/dima/postgres7.3/pgsql/src/interfaces/ecpg/preproc'
> make -C ../../../../src/port all
> make[5]: Entering directory `/home/dima/postgres7.3/pgsql/src/port'
> make[5]: Nothing to be done for `all'.
> make[5]: Leaving directory `/home/dima/postgres7.3/pgsql/src/port'
> bison -y -d  preproc.y
> preproc.y:5560: fatal error: maximum table size (32767) exceeded
> make[4]: *** [preproc.h] Error 1

You need to upgrade your 'bison' program.

-Doug

Re: Compilation errors?

From
Dmitry Tkach
Date:
Thanks to everybody!
It worked!

I am now getting some jdbc errors with java 1.4 though :-(

Is it supposed to compile with java 1.4?

Thanks again!

Dima

Stephan Szabo wrote:

>On Tue, 25 Feb 2003, Dmitry Tkach wrote:
>
>
>
>>I was trying to build pgsql code, and I keep getting this error:
>>
>>make[4]: Entering directory `/home/dima/postgres7.3/pgsql/src/interfaces/ecpg/preproc'
>>make -C ../../../../src/port all
>>make[5]: Entering directory `/home/dima/postgres7.3/pgsql/src/port'
>>make[5]: Nothing to be done for `all'.
>>make[5]: Leaving directory `/home/dima/postgres7.3/pgsql/src/port'
>>bison -y -d  preproc.y
>>preproc.y:5560: fatal error: maximum table size (32767) exceeded
>>make[4]: *** [preproc.h] Error 1
>>
>>
>>I was building the CVS tip initially when I got this, then I switched
>>to REL7_3_STABLE, but I am still getting the same problem with it?
>>
>>Any clues? Is it something wrong with my configuration?
>>
>>
>
>You need to upgrade bison to a newer version (I think 1.5 or better)
>
>
>