Shared lib grief with 6.4.2

From: Matthew Hagerty <matthew(at)venux(dot)net>
To: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Shared lib grief with 6.4.2
Date: 1999-05-26 03:54:58
Message-ID: 4.1.19990525234214.00a67910@mail.venux.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Greetings,

I'm trying to create a simple function for postgres-6.4.2 under
FreeBSD-3.1-RELEASE and GCC-2.7.2.1. This is the program code, simply
converts a bool to int4:

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

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

Then on the command line to create the shared lib and a file command to
ensure I created a shared lib:

# gcc -shared -I../include -o procs.so bool2int.c
# file procs.so
procs.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (FreeBSD),
not stripped

Then in psql:

=> create function bool2int(bool) returns int4 as
'/usr/local/pgsql/procs/procs.so' language 'c';
CREATE
=> select bool2int(1=1);
ERROR: Can't find function bool2int in file /usr/local/pgsql/procs/procs.so
=>

Any insight as to why this does not work would be greatly appreciated.

Thank you,
Matthew Hagerty

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jason Lam 1999-05-26 04:28:45 Problems with libpq
Previous Message James Kinney 1999-05-25 21:42:07 unsubscribe