Re: Performance Test for PostgreSQL9

From: Mark Kirkwood <mark(dot)kirkwood(at)catalyst(dot)net(dot)nz>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Performance Test for PostgreSQL9
Date: 2011-02-28 05:53:22
Message-ID: 4D6B3852.7010500@catalyst.net.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 28/02/11 18:09, Selva manickaraja wrote:
> As mentioned in the documentation, I went to the directory
> src/test/regress and ran the command. It gives the error
>
> GNUmakefile:15: ../../../src/Makefile.global: No such file or directory
> GNUmakefile:80: /src/Makefile.shlib: No such file or directory
> make: *** No rule to make target `/src/Makefile.shlib'. Stop.
>
> Really can't make any sense out of this.
>
> Any ideas?
>

You have not run configure to generate these make files (or you have run
'make distclean' to destroy them).

generally you need to do:

$ ./configure --prefix=your-chosen-install-prefix-here
$ make
$ make install
$ make check

The last step runs the regression test.

regards

Mark

P.s: this discussion really belongs on pg-general rather than
performance, as it is about building and installing postgres rather than
performance, *when* you have it installed ok, then performance based
discussion here is fine :-)

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Selva manickaraja 2011-02-28 06:39:30 Re: Performance Test for PostgreSQL9
Previous Message Selva manickaraja 2011-02-28 05:09:49 Re: Performance Test for PostgreSQL9