From: | Franco Bruno Borghesi <franco(at)akyasociados(dot)com(dot)ar> |
---|---|
To: | Jason Tishler <jason(at)tishler(dot)net> |
Cc: | pgsql-cygwin(at)postgresql(dot)org |
Subject: | Re: C Functions |
Date: | 2003-11-13 18:42:37 |
Message-ID: | 1068748956.1642.6.camel@taz |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-cygwin |
Thanks Jason!
I have to tell you that I had managed to solve this before your reply,
but I think it would be good to explain what I did for any other person
who has the same problem.
My library is called pgakya, so anyone interested should relpace pgakya
for the name of the library he intends to build.
I replaced in my Makefile :
gcc -shared -o ..\bin\pgakya.so *.o
for:
dlltool --export-all --output-def pgakya.def *.o
dllwrap -o ..\bin\pgakya.dll --dllname pgakya.dll -def pgakya.def
*.o /tmp/postgresql7.4RC2/src/utils/dllinit.o /usr/lib/postgresql
-Ltmp/postgresql7.4RC2/src/backend -lpostgres
this two lines did the job, and everything works perfect now.
Thanks again Jason.
On Thu, 2003-11-13 at 15:29, Jason Tishler wrote:
> On Tue, Nov 11, 2003 at 05:42:09PM -0300, Franco Bruno Borghesi wrote:
> > Could anyone tell me what to do, cause I'm really lost here.
>
> <WAG>
> The following thread may apply:
>
> http://archives.postgresql.org/pgsql-cygwin/2003-11/msg00010.php
> </WAG>
>
> Jason
From | Date | Subject | |
---|---|---|---|
Next Message | Jason Tishler | 2003-11-13 19:25:07 | Re: C Functions |
Previous Message | Jason Tishler | 2003-11-13 18:29:19 | Re: C Functions |