[issue19521] parallel build race condition on AIX since python-3.2

2016-11-27 Thread Eric N. Vander Weele
Changes by Eric N. Vander Weele : -- nosy: +ericvw versions: +Python 2.7, Python 3.6, Python 3.7 ___ Python tracker ___

[issue19521] parallel build race condition on AIX since python-3.2

2014-06-06 Thread Michael Haubenwallner
Changes by Michael Haubenwallner michael.haubenwall...@salomon.at: -- hgrepos: +251 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19521 ___ ___

[issue19521] parallel build race condition on AIX since python-3.2

2014-06-04 Thread Michael Haubenwallner
Changes by Michael Haubenwallner michael.haubenwall...@salomon.at: -- hgrepos: +248 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19521 ___ ___

[issue19521] parallel build race condition on AIX since python-3.2

2014-06-04 Thread Michael Haubenwallner
Changes by Michael Haubenwallner michael.haubenwall...@salomon.at: -- hgrepos: -248 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19521 ___ ___

[issue19521] parallel build race condition on AIX since python-3.2

2014-06-04 Thread Michael Haubenwallner
Michael Haubenwallner added the comment: Patch including configure update now. -- Added file: http://bugs.python.org/file35479/issue19521-parallel-build-race-on-aix.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19521

[issue19521] parallel build race condition on AIX since python-3.2

2013-11-08 Thread David Edelsohn
David Edelsohn added the comment: +1 -- nosy: +David.Edelsohn ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19521 ___ ___ Python-bugs-list mailing

[issue19521] parallel build race condition on AIX since python-3.2

2013-11-07 Thread Michael Haubenwallner
New submission from Michael Haubenwallner: Since python-3.2, there is a race condition building in parallel on AIX: Consider these Makefile(.pre.in) rules: $(BUILDPYTHON): ... $(LINKCC) ... $(LINKFORSHARED) ... Modules/_testembed: ... $(LINKCC) ... $(LINKFORSHARED) ...

[issue19521] parallel build race condition on AIX since python-3.2

2013-11-07 Thread Martin v . Löwis
Martin v. Löwis added the comment: Wouldn't it be better if linking _testembed generated _testembed.exp instead of generating python.exp? I hope using $@.exp somehow could help. Hard-coding the name of the export file sounds like a flaw in the first place. -- nosy: +loewis

[issue19521] parallel build race condition on AIX since python-3.2

2013-11-07 Thread Michael Haubenwallner
Michael Haubenwallner added the comment: I'm unsure about the real purpose of _testembed, but given the name it does make sense to me to export the same symbols as $(BUILDPYTHON), thus reusing python.exp. -- ___ Python tracker