rdb
rdb
You could try updating to the latest Panda version, 1.10.9.
Did you get warnings when using Panda's deployment system? What if you explicitly force kivy._clock and kivy.weakmethod to be included in your setup.py? As an aside, is there a reason...
I think you need to change the _GLIBCXX_USE_CXX11_ABI setting.
Your repro case gives me this error: ``` ImportError: /proj/build/manylinux2010_x86_64/P3DModuleBuilder.TestModule.so: undefined symbol: _ZNK20ExecutionEnvironment27ns_has_environment_variableERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE ``` The module apparently requires the cxx11 ABI version of the symbol: ``` # readelf -sW P3DModuleBuilder.TestModule.so...
P3DModuleBuilder is not supposed to link against libpython. It is not needed and causes problems such as the one you are having. I think P3DModuleBuilder should be changed not to...
I don't understand, which headers do you need? Are you running into a new problem, different from the Python one?
I removed p3framework in 2e8789bc14ec32eb2f64f3e669e7b4144c9bd731; it isn't really useful to extension modules, it's just for standalone C++ programs. p3direct, on the other hand, may be useful, since it contains the...
This is a bug in interrogate. I'll look into it, but in the meantime, you can edit the vec3.h file referenced in the error message and change "const static" to...
Hmm, seems more like a missing argument to reference the directory on the interrogate command-line. To be honest I'm not really familiar with how the modulebuilder handles additional include directories....
If you want to expose the classes without modifying the headers, you can run interrogate in -promiscuous mode, or you can create a .N file containing instructions like "forcetype SomeClass"....