From: <and...@bl...> - 2020-11-13 09:20:07
|
Hi Robert I have tried to dig into your problem a little bit and I have come across this wiki page: https://wiki.python.org/moin/WindowsCompilers#GCC_-_MinGW-w64_.28x86.2C_x64.29 According to that, support for MinGW has been discontinued since Python3.4. In any case, even if you get it to compile you will finally have problems linking with the python libs, because they are using a different compiler. The preferred way of building Pythin extensons on Windows is indeed using the MS compiler. For this you don't really need a Visual Studio license, it is enough to download the buildtools for VS2091: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019 Given the above, I think I will be actually removing the support for Mingw from the setup files. In additon, I will have to work on the documentation to make the build process more clear. Best regards Andreas ----Ursprüngliche Nachricht---- Von : ro...@gm... Datum : 13/11/2020 - 08:13 (CEST) An : pyf...@li... Betreff : Re: [Pyfltk-user] windows executable installer On Thu, Nov 12, 2020 at 11:06 PM Robert Arkiletian <ro...@gm...> wrote: > > Some limited success tonight. Using mingw64, compiled fltk from source. > ./configure -enable-shared -disable-gl > make > make install > fluid did not build properly as there is a bug in mingw-gcc for lines with > case -1: > but that did not matter as the libs and includes built fine. > Checked out subversion source of pyfltk revision 536 > I almost got pyfltk to build. Attached are the errors and the patch > files for setup.py and Makeswig.py forgot to mention commands to build were python MakeSwig.py the output of MakeSwig was :0: not sure what that means python setup.py build --disable-gl --disable-forms _______________________________________________ Pyfltk-user mailing list Pyf...@li... https://lists.sourceforge.net/lists/listinfo/pyfltk-user |