[Python-Dev] Unable to build regex module against Python 3.5 32-bit (original) (raw)
Paul Moore p.f.moore at gmail.com
Tue May 26 08:49:29 CEST 2015
- Previous message (by thread): [Python-Dev] Unable to build regex module against Python 3.5 32-bit
- Next message (by thread): [Python-Dev] Unable to build regex module against Python 3.5 32-bit
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 26 May 2015 at 00:34, MRAB <python at mrabarnett.plus.com> wrote:
The 32-bit Python says it's 32-bit and the 64-bit Python says it's 64-bit.
---8<--- C: rem Compile for Python 3.5 (64-bit) [works] cd C:\MinGW64\bin "C:\MinGW64\bin\gcc.exe" -mdll -m64 -DMSWIN64 -O2 -Wall -Wsign-compare -Wconversion -I"C:\Python35\include" -c "D:\projects\mrab-regex\regex3\regex_regexunicode.c" -o "D:\projects\mrab-regex\regex3\Release(3.5)_regexunicode.o" "C:\MinGW64\bin\gcc.exe" -mdll -m64 -DMSWIN64 -O2 -Wall -Wsign-compare -Wconversion -I"C:\Python35\include" -c "D:\projects\mrab-regex\regex3\regex_regex.c" -o "D:\projects\mrab-regex\regex3\Release(3.5)_regex.o" "C:\MinGW64\bin\gcc.exe" -m64 -shared -s "D:\projects\mrab-regex\regex3\Release(3.5)_regexunicode.o" "D:\projects\mrab-regex\regex3\Release(3.5)_regex.o" -L"C:\Python35\libs" -lpython35 -o "D:\projects\mrab-regex\regex3\Release(3.5)_regex.pyd" rem Compile for Python 3.5 (32-bit) [fails] cd C:\MinGW\bin "C:\MinGW\bin\gcc.exe" -mdll -m32 -O2 -Wall -Wsign-compare -Wconversion -I"C:\Python35(32-bit)\include" -c "D:\projects\mrab-regex\regex3\regex_regexunicode.c" -o "D:\projects\mrab-regex\regex3\Release(3.5)(32-bit)_regexunicode.o" "C:\MinGW\bin\gcc.exe" -mdll -m32 -O2 -Wall -Wsign-compare -Wconversion -I"C:\Python35(32-bit)\include" -c "D:\projects\mrab-regex\regex3\regex_regex.c" -o "D:\projects\mrab-regex\regex3\Release(3.5)(32-bit)_regex.o" "C:\MinGW\bin\gcc.exe" -m32 -shared -s "D:\projects\mrab-regex\regex3\Release(3.5)(32-bit)_regexunicode.o" "D:\projects\mrab-regex\regex3\Release(3.5)(32-bit)_regex.o" -L"C:\Python35(32-bit)\libs" -lpython35 -o "D:\projects\mrab-regex\regex3\Release(3.5)(32-bit)_regex.pyd" ---8<---
Do you get the same failure when using distutils to build the extension?
Paul
PS This discussion should probably be moved to bugs.python.org, as I mentioned...
- Previous message (by thread): [Python-Dev] Unable to build regex module against Python 3.5 32-bit
- Next message (by thread): [Python-Dev] Unable to build regex module against Python 3.5 32-bit
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]