Return-Path: andrew
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA01189; Wed, 23 Jun 93 13:45:57 -0700
Date: Wed, 23 Jun 93 13:45:57 -0700
Message-Id: <9306232045.AA01189@postgres.Berkeley.EDU>
From: <andrew@postgres.berkeley.edu>
Subject: Re: Linking User Defined Function
To: postgres@postgres.berkeley.edu
Sender: pg_adm@postgres.berkeley.edu
Cc: postgres@postgres


> I have to define postquel function in C that has to be
> linked with the HDF library.
> >From previous response,
> only one object file can be specified in the
> function definition.
> 
> Could someone tell me how to link the C function with
> library other than the backend postgres library?
	
link everything into a single .o file like this:

	ld -r your_obj.o the_libary.a -o new_obj.o

- Andrew

