RE: Has anybody compiled .c file generated from .pgc file

From: "Chandra Sekhar (dot) K" <csekhar(at)cisco(dot)com>
To: "Riebs, Andy" <Andy(dot)Riebs(at)compaq(dot)com>
Cc: pgsql-ports(at)postgresql(dot)org
Subject: RE: Has anybody compiled .c file generated from .pgc file
Date: 2000-11-07 00:17:10
Message-ID: 200011061845.AAA06702@megha.cisco.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-ports

I am still getting same error message. I have installed
postgreSQL binaries on my NT machine under /usr/local/pgsql
( not under /usr/postgres ) directory. Does the directory
structure matter for compilation ?

I have include,lib directory structures under /usr/local/pgsql.

Thanks,
Chandra

At 11:08 AM 11/6/00 -0500, Riebs, Andy wrote:
>> I have been trying to run a sample code for postgreSQL
>> database. I just want to create a database and do simple
>> insertion and extraction of the inserted data. I have
>> created .pgc file and am able to generate .c file using
>> ecpg but I am stuck with gcc , not able to create the
>> binary from .c file.
>
>Use a Makefile to specify the locations of the libraries,
>such as...
>
>-----snip-----
>SRCDIR=../postgres/src
>CFLAGS+=-I$(SRCDIR)/include
>CFLAGS+=-I$(SRCDIR)/interfaces/libpq
>CFLAGS+=-I$(SRCDIR)/interfaces/ecpg/include
>LIBPQDIR=$(SRCDIR)/interfaces/libpq
>LIBECPGDIR=$(SRCDIR)/interfaces/ecpg/lib
>LDFLAGS+=-L$(LIBPQDIR) -lpq
>LDFLAGS+=-L$(LIBECPGDIR) -lecpg
>LDFLAGS+=-g
>%.c : %.pgc
> ecpg -t -o $@ $<
>-----snip-----
>
>/andy
>
>---
>Andy Riebs, andy(dot)riebs(at)compaq(dot)com Alpha Technology Solutions Group
>978-506-6628, fax 978-506-6524 Compaq Computer Corporation
>(h) andy(at)freckles(dot)mv(dot)com <http://www.linuxalpha.compaq.com>
>

Browse pgsql-ports by date

  From Date Subject
Next Message Pete Forman 2000-11-07 08:48:35 Re: Re: ps and psql from PostgreSQL not working with cygwin-1.1.5-2
Previous Message lbottorff 2000-11-06 21:40:46 RE: Errors building Postgres on NT