[issue1633863] AIX: configure ignores $CC

2010-09-21 Thread Antoine Pitrou
Antoine Pitrou 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-21 Thread Sébastien Sablé
Sébastien Sablé 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 http://mail.python.org/pipermail/python-dev/2010-September/103774

[issue1633863] AIX: configure ignores $CC

2010-09-15 Thread R. David Murray
R. David Murray 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 bugs it would be grea

[issue1633863] AIX: configure ignores $CC

2010-09-15 Thread Sébastien Sablé
Sébastien Sablé 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 ctypes will not compile on AI

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Sébastien Sablé
Sébastien Sablé added the comment: cc(_r) and xlc(_r) refer to the same binary of the same compiler, but they change the default configuration of that compiler. The documentation indicates: DESCRIPTION The invocation commands compile C and C++ source files. The commands and

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou 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 case, the fix

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Sébastien Sablé
Sébastien Sablé 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. cc_r -qlanglvl=extc89 -DNDEBUG -O -O2 -O2 -I. -IInclude -I./Include -I/home/cis/buildbot/support-buildbot/include -I/home/cis/buildbot/support-bui

[issue1633863] AIX: configure ignores $CC

2010-08-30 Thread Sébastien Sablé
Sébastien Sablé 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 ___ P

[issue1633863] AIX: configure ignores $CC

2010-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[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