[issue15000] posixsubprocess module broken on x32

Mike Frysinger report at bugs.python.org
Tue Jun 5 03:35:58 CEST 2012


Mike Frysinger <vapier at users.sourceforge.net> added the comment:

$ echo | gcc -m32 -E -P -dD - | grep LP
<nothing>
$ echo | gcc -m64 -E -P -dD - | grep LP
#define _LP64 1
#define __LP64__ 1
$ echo | gcc -mx32 -E -P -dD - | grep LP
#define _ILP32 1
#define __ILP32__ 1

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15000>
_______________________________________


More information about the Python-bugs-list mailing list