Tagged Questions

0
votes
1answer
22 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 $ …
0
votes
1answer
40 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
43 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
44 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
60 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
65 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 …
1
vote
3answers
42 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).
0
votes
0answers
52 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
12 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
0answers
13 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 …
0
votes
1answer
103 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 …
2
votes
2answers
56 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(); …
1
vote
1answer
92 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
0answers
36 views

Embed Python in NI CVI(LabWindows)

I need to access LabWindows API and/or fucntions written in labwindows from Python. My approach so far I have been able to do so in Visual studio using SWIG to some extent, but my dll creation fails …
0
votes
4answers
92 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 …

1 2 3 4 5 6 next
15 30 50 per page