Questions tagged [pybinding]

18 questions
0
votes
1 answer

Pybind11 - ImportError: .../pybindx.cpython-38-x86_64-linux-gnu.so: undefined symbol: _ZN6google8protobuf8internal26fixed_address_empty_stringB5cxx11E

I wrote some binding code to bind C++ code with python in pybindx.cpp file. I want to call some functions (implemented in C++) using python. When I use python setup.py build_ext command, the .so file…
0
votes
0 answers

Undefined reference to ctor of virtual class when creating binding with pybind

I am trying to create a python binding of a virtual class with pybind. I've been following pybind11 documentation and this is what I have TestField.h class AbstractTestField { public: virtual ~AbstractTestField() = default; virtual double…
jjcasmar
  • 1,387
  • 1
  • 18
  • 30
0
votes
1 answer

C# Script version of PyBinding for WPF

I wrote a CSharpScriptBinding roughly equivalent to the PyBinding on CodePlex. It uses the C# script engine from http://www.csscript.net. After I wrote it, I kind of decided it might not really be something good to use. Although it caches the…
JimSt24
  • 186
  • 5
1
2