Обсуждение: develop a extension with cpp?

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

develop a extension with cpp?

От
"huangning290@yahoo.com"
Дата:
Hi
    if i can develop a extension with cpp language?















regards!

Re: develop a extension with cpp?

От
Ilya Anfimov
Дата:
On Tue, Nov 02, 2021 at 01:31:22AM +0000, huangning290@yahoo.com wrote:
>    Hi
>        if i can develop a extension with cpp language?
>    regards!

 Generally,  like  in  any other language. Write files, use calls
and APIs available inside Postgres, compile  it  and  install  to
postgres directory.

 The  only one I know of as of now is https://github.com/postgrespro/rusmorph

 And it's not an example of a well-documented extension, unfortu-
nately.

 Hoewever,  it  works.  It's possible that you can find some more
examples on pgxn.org

 Also, probably you would need to compile it with

USE_PGXS=1 make with_llvm=no

 While  the USE_PGXS=1 is a standard way to compile extension out
of the postgres source tree, the with_llvm=no is a workaround  of
some bug in the llvm-7, that doesn't allow JIT compilation of C++
code.




Re: develop a extension with cpp?

От
Dmitry Igrishin
Дата:
вт, 2 нояб. 2021 г. в 20:12, huangning290@yahoo.com <huangning290@yahoo.com>:
>
> Hi
>     if i can develop a extension with cpp language?
Sure, you can. Please, see example -- https://github.com/dmitigr/pgnso



Re: develop a extension with cpp?

От
"huangning290@yahoo.com"
Дата:
Thank you. 


On Wednesday, November 3, 2021, 06:20:18 AM GMT+8, Dmitry Igrishin <dmitigr@gmail.com> wrote:


вт, 2 нояб. 2021 г. в 20:12, huangning290@yahoo.com <huangning290@yahoo.com>:

>
> Hi
>    if i can develop a extension with cpp language?

Sure, you can. Please, see example -- https://github.com/dmitigr/pgnso