I have a simple C API (N
simple functions). I want to wrap it into C#, Java and Python at the same time. How to call SWIG to create wrapper for multiple languages at the same time?
Something like this
swig.exe -c++ -csharp -java -namespace Bla outdir ./ -o ./BlaAPIWrapper.cxx BlaAPI.i
results in swig application crush
Assertion failed: !this_, file Modules/lang.cxx, line 332
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
Works fine for each language sepratly.