Обсуждение: Compiling a function

Поиск
Список
Период
Сортировка

Compiling a function

От
Matthew Hagerty
Дата:
Greetings,

I have a very simple function I am trying to get working with 6.2.4.  I
compiled the C program without any errors, but when I try to do a simple
query to see if it worked I get this error:

select bool2int(1 > 1);

ERROR:  Load of file /usr/local/pgsql/procs/bool2int.o failed: dlopen
(/usr/local/pgsql/procs/bool2int.o) failed

I am running on FreeBSD-3.1-RELEASE with GCC 2.7.2.1.  The command I issued
to compile was:

gcc -fpic -I../include -c bool2int.c

and the program is:

#include "../include/postgres.h"

int2 bool2int(bCondition)
bool    bCondition;
{
    if (bCondition)
        return(1);
    else
        return(0);
}

I must say thank you to Jose Soares for providing me a solution, i.e. this
function, however I cannot get it to work.

Thanks,
Matthew Hagerty