compiling c function using MinGW

From: eehab hamzeh <eehab40(at)hotmail(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: compiling c function using MinGW
Date: 2009-04-06 13:46:19
Message-ID: BLU133-W33B5A721A7ABF843B63CAAA0840@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-general


this is how i write the command in MinGW any more direction about I. I am a new user for MinGW
gcc -shared -o hamzeh.dll tt1.o -L "c:/programme/postgresql/8.3/lib" -lpostgres

Thanks

Ihab

>
> 2009/4/6 eehab hamzeh <eehab40(at)hotmail(dot)com>:
> > Hello
> >
> > I am trying to build some functions using C language. these functions are
> > mentioned in the postgresql documentation.
> >
> > http://www.postgresql.org/docs/8.3/interactive/xfunc-c.html
> >
> > Datum
> > add_one_float8(PG_FUNCTION_ARGS)
> > {
> > /* The macros for FLOAT8 hide its pass-by-reference nature. */
> > float8 arg = PG_GETARG_FLOAT8(0);
> >
> > PG_RETURN_FLOAT8(arg + 1.0);
> > }
> >
> > PG_FUNCTION_INFO_V1(makepoint);
> >
> > Datum
> > makepoint(PG_FUNCTION_ARGS)
> > {
> > /* Here, the pass-by-reference nature of Point is not hidden. */
> > Point *pointx = PG_GETARG_POINT_P(0);
> > Point *pointy = PG_GETARG_POINT_P(1);
> > Point *new_point = (Point *) palloc(sizeof(Point));
> >
> > new_point->x = pointx->x;
> > new_point->y = pointy->y;
> >
> > PG_RETURN_POINT_P(new_
> > point);
> > }
> >
> > the only function that are work are the one with int32 variable.
> > the other function bring errors and are not working
> > any body can give directions
> >
> >
> > kind regards
> > ihab
>
> Re-send to pgsql-general.
>
> Can you paste these errors and how you're compiling this?
>
> --
> Emanuel Calvo Franco
> Sumate al ARPUG !
> (www.postgres-arg.org -
> www.arpug.com.ar)
> ArPUG / AOSUG Member
> Postgresql Support & Admin

_________________________________________________________________
Show them the way! Add maps and directions to your party invites.
http://www.microsoft.com/windows/windowslive/products/events.aspx

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Teodor Sigaev 2009-04-06 14:27:27 pgsql: Fix 'all at one page bug' in picksplit method of R-tree
Previous Message Emanuel Calvo Franco 2009-04-06 13:36:49 Re: [COMMITTERS]

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2009-04-06 14:00:24 Re: Postgres Security Checklist
Previous Message Emanuel Calvo Franco 2009-04-06 13:36:49 Re: [COMMITTERS]