Pierre Fernique
Pierre Fernique
Looking at the line ```console File "/home/jean/.miniconda/envs/statiskit/lib/python3.6/site-packages/scons_tools/site_autowig/controller/statiskit_stl.py", line 68, in controller ``` the problem seems to be when the **StatisKit.STL** controller is called. Can you show the content of this...
This seems to be a bug in **AutoWIG**. Replace the `controller` function by: ```python def controller(asg, library=True, **kwargs): autowig.controller.plugin = 'default' asg = autowig.controller(asg, clean=False, **kwargs) if library: for function...
It seems that `template.globalname` is raising an error, replace it with `template._node`
My bad, use `template._source` and `template._target` in place of `template._node`. Note that if you are in a hurry, remove the line `print("Error on template: " + template._node)`. But don't forget...
Don't forget, at some point, to add the line `print("Error on template: " + template._source + " -> " + template._target)` and to post the result. I need this in...
This is another issue to open since it concerns the compilation of generated wrappers. This current issue concerns an error on wrapper generation. With the hack, wrappers were generated using...
Ok, looks like at some point the `enum ::std::errc` is deleted from the ASG but not all template classes using it as template parameter. Will look further to resolve this.
In order to use the source that is problematic can you commit your work and push it to your GitHub personal repository. Then, provide the link to this commit. Moreover,...
I tried with `future::multicore` it's working fine but with `future::multisession` I have a similar problem (`Error in unserialize(node$con) : error reading from connection`).
Thanks for your reply ! I'm on Windows Subsystem for Linux (that behaves as Linux). I was glad enough to find that one backend could recover from segfaults. I was...