Thread
-
develop a extension with cpp?
huangning290@yahoo.com <huangning290@yahoo.com> — 2021-11-02T01:31:22Z
Hi if i can develop a extension with cpp language? regards!
-
Re: develop a extension with cpp?
Ilya Anfimov <ilan@tzirechnoy.com> — 2021-11-02T22:11:34Z
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 <dmitigr@gmail.com> — 2021-11-02T22:20:07Z
вт, 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 <huangning290@yahoo.com> — 2021-11-03T01:28:07Z
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