0
votes
1answer
18 views
Why does SWIG crash Python when linked to gtkglext?
Anything I link to gtkglext using SWIG crashes Python on exit. Why does this crash?
test.i:
%module test
%{
void test() { printf("Test.\n"); }
%}
void test();
Session:
$ swig -python test.i
$ …
1
vote
3answers
34 views
Swig and Lua: how to map Lua file to FILE*
I have a C function that takes FILE* as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a %typemap for this. How to write it?
(I just started learning Lua).
1
vote
1answer
36 views
How can I collapse multiple arguments into one SWIG parameter
I'm trying to write a typemap that converts multiple/variable arguments into one input parameter.
For example, say I have a function that takes a vector.
void foo(vector<int> x);
And I want …
0
votes
1answer
30 views
Wrapping a Lua object for use in C++ with SWIG
Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse.
I am using Lua & C++ & SWIG.
I have interfaces in C++ and …
0
votes
1answer
40 views
C lib with Python bindings where both want to render
I'm sketching on some fluid dynamics in Python. After a while, I'm looking for a bit more speed, so I rewrote the actual logic in C and put up some Python bindings (using SWIG).
My problem now is …
0
votes
1answer
35 views
Returning big array from Python module written in C
I have a C lib that creates (and changes) a big array of enums. What is the best way if I want to access that array in Python? I have created bindings in SWIG but Im a bit unsure how to approach this …
0
votes
1answer
52 views
Implementing and inheriting from C++ classes in Lua using SWIG
Would it be possible using Lua and SWIG and say an IInterface class, to implement that interface and instantiate it all within Lua? If so how would it be done?
0
votes
2answers
61 views
Python subclass with C++ baseclass
I have some C++ I have exposed to Python through SWIG. In there is a base class with a single pure virtual function.
In Python, I import my module and define a class that uses the abstract class as …
0
votes
0answers
40 views
Pointers to members in swig (or Boost::Python)
Hello,
I made some bindings from my C++ app for python.
The problem is that I use pointers to members (It's for computing shortest path and giving the property to minimize as parameter).
This is …
0
votes
1answer
6 views
SWIG crashes on AIX (with python, and probably everything else SWIG support)
SWIG compiles and install easily on AIX. Unfortunately, a simple SWIG hello world (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction (depending on some …
0
votes
4answers
89 views
Creating Windows DLL from C++ source files
I have multiple source files in C++ using which i want to create a Dynamic link library.
I see this happening in linux with gcc -shared and ln
however for Windows i suppose i would have to modify …
2
votes
2answers
52 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addressLua();
…
0
votes
0answers
12 views
Using Ruby Blocks from C with SWIG
I am using SWIG to wrap a C interface in Ruby. Given two structs
typedef struct Vertex {
int color, discoverd, finished;
struct Vertex *next;
} Vertex;
typedef struct Graph {
struct Vertex …
1
vote
1answer
90 views
Access violation on run function from dll
I have DLL, interface on C++ for work with he. In bcb, msvc it works fine. I want to use Python-scripts to access function in this library.
Generate python-package using Swig.
File setup.py
import …
0
votes
1answer
62 views
Wrapping C structs with SWIG
I have C header file containing the following type definition:
// example.h
typedef struct Vertex {
int color;
} Vertex;
I try to wrap this struct with SWIG, but apparently I am doing something …
