Hi All,
My C++ compiler threw an error when I was trying to build Pythonnator on a
Windows 8 platform. Here is the relevant part of my winmake.cmd file:
set SWIG_PATH=\software_dev\Libs\swigwin-2.0.10
if not exist %SWIG_PATH% goto SwigPathNotSet
set PYTHON_INCLUDE=\software_dev\Python\Python24\include
set PYTHON_LIB=\software_dev\Python\Python24\lib
set PYTHON_LIBDIR=\software_dev\Python\Python24\libs
if not exist %PYTHON_LIB% goto PythonNotSet
REM build Pythonnator
REM devenv pythonnator.vcproj /build release
"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\vcbuild"
/rebuild pythonnator.vcproj
Here is the error I am getting:
Pythonnator.cpp
.\Pythonnator.cpp(192) : error C2660: 'SWIG_Python_GetModule' : function does
not take 0 arguments
.\Pythonnator.cpp(235) : error C2660: 'SWIG_Python_NewPointerObj' : function
does not take 3 arguments
.\Pythonnator.cpp(289) : error C2660: 'SWIG_Python_NewPointerObj' : function
does not take 3 arguments
.\Pythonnator.cpp(362) : error C2660: 'SWIG_Python_NewPointerObj' : function
does not take 3 arguments
.\Pythonnator.cpp(372) : error C2660: 'SWIG_Python_NewPointerObj' : function
does not take 3 arguments
I only have Visual Studio Express installed which is why I am using vcbuild
instead of devenv. Any suggestions?
- Bill