From: | "vdm(dot)fbsd(at)virgilio(dot)it" <vdm(dot)fbsd(at)virgilio(dot)it> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: postgresql and C++/C |
Date: | 2005-09-28 09:59:04 |
Message-ID: | 32295672.1127901544503.JavaMail.root@pswm16.cp.tin.it |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
I've just modified the extension with .c instead of .cpp and run:
vicbsd# gcc -I /usr/local/include/ prova.c -o prova -Lpq
/var/tmp//cc86RZZl.o(.text+0x25): In function `main':
: undefined
reference to `PQconnectdb'
Nothing seems to be changed!
Thanks
anyway.
Vittorio
----Messaggio originale----
Da: kleptog(at)svana(dot)org
Data: 28-set-2005 11.44
A: "vdm(dot)fbsd(at)virgilio(dot)it"<vdm(dot)fbsd(at)virgilio(dot)it>
Cc: <pgsql-general(at)postgresql(dot)org>
Ogg: Re: [GENERAL] postgresql and
C++/C
On Wed, Sep 28, 2005 at 10:11:45AM +0100, vdm(dot)fbsd(at)virgilio(dot)it
wrote:
> Context:FREEBSD 5.4, postgresql 8.0.3
>
> I'm not a C newbye
and I'm
> having a go at compiling my first, simple C(++) program:
1.
If it's a C program, you should name the file .c otherwise gcc is
likely to consider it a c++ program.
2. If it's a c++ program, use g++
to compile and link to make sure you
get all the right libraries and
paths.
3. Use -lpq to link to the postgresql client library. You may
need a -L
so it looks in the right place.
Hope this helps,
--
Martijn
van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
>
Patent. n. Genius is 5% inspiration and 95% perspiration. A patent is a
> tool for doing 5% of the work and then sitting around waiting for
someone
> else to do the other 95% so you can sue them.
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2005-09-28 10:06:32 | Re: Triggers after a rule |
Previous Message | Janning Vygen | 2005-09-28 09:50:53 | Re: ERROR: type "temp_gc" already exists |