[issue1633863] AIX: configure ignores $CC

2010-09-21 Thread Sébastien Sablé
Sébastien Sablé sa...@users.sourceforge.net added the comment: I am currently in the process of correcting the building of Python on AIX and stabilizing the tests in order to add my buildbot as a slave of the official buildbot master, cf post on python-dev

[issue1633863] AIX: configure ignores $CC

2010-09-21 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Ok, committed in r84946 (3.2), r84947 (3.1) and r84948 (2.7). Thank you! -- resolution: - fixed stage: - committed/rejected status: open - closed versions: -Python 2.6 ___ Python tracker

[issue1633863] AIX: configure ignores $CC

2010-09-15 Thread Sébastien Sablé
Sébastien Sablé sa...@users.sourceforge.net added the comment: Antoine, I tested your commit with cc_r and it compiles fine (I have buildbot running now, just need to find a way to make the results publicly browsable). I still think xlc_r would be a better choice as a default: at the moment

[issue1633863] AIX: configure ignores $CC

2010-09-15 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Sébastien, you could email Martin (tracker id loewis) about adding your buildbot to our unstable fleet (or even to stable if it is stable; that is, the tests normally pass and don't randomly fail). As long as you are around to help fix

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: cc_r does not seems to be able to compile py3k, so it seems to be a bad idea to force it by default. Python should be able to compile with any C89-compliant compiler, so it seems a good idea to open a bug for compile errors instead. In this

[issue1633863] AIX: configure ignores $CC

2010-08-30 Thread Sébastien Sablé
Sébastien Sablé sa...@users.sourceforge.net added the comment: The workaround that I have been using is to call configure like this: ./configure --with-gcc=${CC} (I usually define CC like this: export CC=xlc_r) Python compiles fine on AIX 6.1 with that. -- nosy: +sable

[issue1633863] AIX: configure ignores $CC

2010-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1633863 ___ ___

[issue1633863] AIX: configure ignores $CC

2008-10-03 Thread David Jones
David Jones [EMAIL PROTECTED] added the comment: This is still a problem for Python 2.6 on AIX 6.1. The simplest fix is to change «CC=cc_r» to «CC=${CC:-xlc_r}» but I have no idea how to go about changing the configure script. -- nosy: +drj versions: +Python 2.6