Actually we are required to use C++ Static Library in PHP, for that we are required to create .so .
Just to be specific we are working on Windows Platform, so make / ./configure etc are not available here for making php extension or we are not able to figure that out.
Any help either on creating “.so” file for C++ static library on windows or
steps to create make and configure files for C++ Static library on windows.
thanks in advance….
Files with extension .so are usually unix-based dynamic libraries.
The equivalent for that in Windows is usually a .dll file.
In the case of PHP extensions, it might be a good idea to read the manual
Related questions:
c++ php and static library
Extending PHP with C++?