| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
This patch adds 64 bit support.
|
@fatso83 Unfortunately I no longer have any windows machines available to me to help with any questions (not that I expect too many with such a small patch) so feel free to put your name on the commit if you're in a better position to shepherd it along. |
Sorry, something went wrong.
|
I can confirm that boost/python/detail/wrap_python.hpp still has to be patched to support Boost.Python on Cygwin64 (I'm using Boost 1.60.0). An alternative patch is wrapping #define SIZEOF_LONG 4 with an #ifndef: #ifndef SIZEOF_LONG # define SIZEOF_LONG 4 #endif This works as Cgwin64 defines SIZEOF_LONG in /usr/include/python2.7/pyconfig.h (which is included by boost/python/detail/wrap_python.hpp). |
Sorry, something went wrong.
Add cygwin64 support to wrap_python.hpp
| Back | FazBrowse Home | New Git URL |
This patch adds 64 bit support.
Currently the lack of 64 bit support for Cygwin prevents projects from compiling on Cygwin64 (see ycm-core/YouCompleteMe#684). Variations of this fix has been circulating for a few years.
Originally submitted on the old Trac issue tracker 9 months ago.