0
votes
1answer
212 views

Creating DLL with SWIG from VS2010 error LNK2019: unresolved external symbol "int __cdecl axtoi

I'm trying to generate a dll file with swig from Visual Studio 2010, I created and compiled my wrapper.cpp code successfully and add every library dependencies to my project. Now when I try to build ...
0
votes
0answers
92 views

PHP extension in windows [closed]

I have a question, I want to create a dll file in order to use in PHP. I am totally familiar with SWIG and I can develop extensions in unix system. But I don't know how can I create my extension dll ...
0
votes
0answers
154 views

Accessing the native code (c++) in PHP using Swig [closed]

I have created EmployeeNative class in Native (C++) and created EmployeeSwig class using SWIG. EmployeeSwig class is just wrapper class to access EmployeeNative class functionalities. **Native ...
3
votes
1answer
145 views

wrap_newBundle not available SWIG & webpay

I want to setup webpay on my local Installed SWIG Added webpay extension to php.ini Then I tried to execute the test.php it shows the following error: --------error while opening file ...
0
votes
2answers
304 views

can't install webpay extesion with php?

I am trying to install webpaySWIG extension in my local but it shows some errors. what i have done is cd webpaySWIG-3.2 (this is the location for extesion) sudo make -f makefilePhp5 (this command ...
9
votes
1answer
464 views

Resource garbage collected too early

I've created a PHP extension with SWIG and everything works fine, but I'm observing some strange garbage collection behavior when chaining method calls. For example, this works: $results = ...
2
votes
1answer
550 views

Memory leak from SWIG-generated extension

I'm having a memory leak problem wrapping a C++ library in PHP using SWIG. It seems to happen when callbacks from C++ containing complex types are sent to PHP while directors are enabled. Here is a ...
4
votes
1answer
340 views

Wrapping boost::shared_ptr in PHP using SWIG

If I use SWIG to wrap this C++ function: boost::shared_ptr<Client> Client::create() { return boost::shared_ptr<Client>(new Client()); } And then call it in PHP: $client = ...
0
votes
1answer
171 views

stdout from SWIG-generated PHP extension

I have the following C++ function: void foo() { std::cout << "bar" << std::endl; } I'm porting this to PHP via SWIG. Everything compiles fine and the extension loads properly. I'm ...
15
votes
1answer
950 views

creating PHP C/C++ extension modules using SWIG

I have written some C/C++ extension modules for PHP, using the 'old fashioned way' - i.e. by using the manual way (as described by Sarah Golemon in her book). This is too fiddly for me, and since I ...
2
votes
2answers
678 views

Missing symbol after compiling swig interface

Im trying to compile a php interface for my linux shared object and i have managed to get it to compile all right using the output from swig, however when i try and load the so it complains of a ...
2
votes
1answer
788 views

SWIG for making PHP extensions, have you tried it?

I have a few small libraries and wrappers written in C (not C++) that I would like to make available to PHP via extensions. I read several tutorials on writing proper PHP extensions and it does not ...