Hello,
I try to use the srf API and I have a link error. When I did :
FuncCallContext *funcctx;
...
if (SRF_IS_FIRSTCA LL()){
funcctx = SRF_FIRSTCALL_I NIT(); // If I remove this line, no link error
...
}
I have this link error : "undefined reference to 'init_MultiFunc Call(FunctionCa llInfoData*)'". The init_MultiFuncC al function is in the funcapi.h file, but where is the associated library ? I try all the libraries of PostreSQL, but no success .
Any idea ? Thanks.
I try to use the srf API and I have a link error. When I did :
FuncCallContext *funcctx;
...
if (SRF_IS_FIRSTCA LL()){
funcctx = SRF_FIRSTCALL_I NIT(); // If I remove this line, no link error
...
}
I have this link error : "undefined reference to 'init_MultiFunc Call(FunctionCa llInfoData*)'". The init_MultiFuncC al function is in the funcapi.h file, but where is the associated library ? I try all the libraries of PostreSQL, but no success .
Any idea ? Thanks.
Comment