我正在尝试构建QuantLib Python绑定。我设法使用these指令构建了QuantLib(我找到了libboost_serialization文件here)。当我尝试python setup.py构建时,我收到以下错误
python setup.py build
running build
running build_py
running build_ext
building 'QuantLib._QuantLib' extension
C:\mingw\bin\gcc.exe -mno-cygwin -mdll -O -Wall -IC:\Python26\include -IC:\Python26\PC -c QuantLib/quantlib_wrap.cpp -o build\temp.win32-2.6\Release\quantlib\quantlib_wrap.o
cc1plus: error: unrecognized command line option '-mno-cygwin'
error: command 'gcc' failed with exit status 1
我听说不再支持mno-cygwin选项,我已经看到它从numpy distutils中删除了,但据我所知,这只是使用python distutils。关于我应该看什么的任何提示?