diff options
| author | stijn | 2015-11-20 15:59:06 +0100 |
|---|---|---|
| committer | Paul Sokolovsky | 2015-11-24 17:34:14 +0200 |
| commit | 3baf6b531990dda109b9af065c94cf9eb9c0aac6 (patch) | |
| tree | 8664323c408ece050b31ed751352c4402c97ba0a /windows/README | |
| parent | a58fa27c2409c393bd7df5c58e63eec2730c4f68 (diff) | |
windows/py: Support 64bit mingw-w64 builds
- add mp_int_t/mp_uint_t typedefs in mpconfigport.h
- fix integer suffixes/formatting in mpconfig.h and mpz.h
- use MICROPY_NLR_SETJMP=1 in Makefile since the current nlrx64.S
implementation causes segfaults in gc_free()
- update README
Diffstat (limited to 'windows/README')
| -rw-r--r-- | windows/README | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/windows/README b/windows/README index e9ccc33f5..ca26c4629 100644 --- a/windows/README +++ b/windows/README @@ -20,11 +20,15 @@ make CROSS_COMPILE=i586-mingw32msvc- To compile under Cygwin: Install following packages using cygwin's setup.exe: -mingw64-i686-gcc-core, make +mingw64-i686-gcc-core, mingw64-x86_64-gcc-core, make Build using: make CROSS_COMPILE=i686-w64-mingw32- +or for 64bit: + +make CROSS_COMPILE=x86_64-w64-mingw32- + To compile using Visual Studio 2013 (or higher): |
