Re: Problems adding C Extentions

Поиск
Список
Период
Сортировка
От Norman Vine
Тема Re: Problems adding C Extentions
Дата
Msg-id 110401c2c757$e580c960$3d36ba8c@sfdev3
обсуждение исходный текст
Ответ на Problems adding C Extentions  (DDonnelly@rochgrp.com)
Список pgsql-cygwin
DDonnelly@rochgrp.com writes:

> I am moving a Postgres application from Linux to Cygwin.  The application
> has some Postgres extensions built in C.  I get a clean compile and load,
> but when I go to load the functions into Postgres I get a load error.  I
> would appreciate any guidance.  Here is the code and error message:
>
> create function RealPct(int4, int4) returns float8
>         as '/home/ddonn/stc/model/stcdemo/STCModel.so' language 'c'
> with(isStrict);
> ERROR:  Load of file /home/ddonn/stc/model/stcdemo/STCModel.so failed:
> dlopen: Win32 error 3221225622

Make sure you have the following in your Makefile

override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS)


HTH

Norman

В списке pgsql-cygwin по дате отправления:

Предыдущее
От: DDonnelly@rochgrp.com
Дата:
Сообщение: Problems adding C Extentions
Следующее
От: Oliver Vecernik
Дата:
Сообщение: Re: Problems adding C Extentions