Re: Compiling Python using the Portland Group compiler

2006-07-19 Thread Konrad Hinsen
On Jul 12, 2006, at 15:57, Konrad Hinsen wrote: I am trying to install Python 2.4.3 on an AMD Opteron system using the Portland Group's compiler (pgcc). Using CC=pgcc -DNCURSES_ENABLE_STDBOOL_H=0 OPT=-O0 LINKFORSHARED=-Wl,- export-dynamic ./configure --without-cxx I finally managed to

Re: Compiling Python using the Portland Group compiler

2006-07-14 Thread [EMAIL PROTECTED]
Konrad Hinsen wrote: I am trying to install Python 2.4.3 on an AMD Opteron system using the Portland Group's compiler (pgcc). Using I finally managed to obtain an executable that would start and work, but it fails a couple of test cases: ... Has anyone encountered such failures before? Does

Re: Compiling Python using the Portland Group compiler

2006-07-13 Thread Konrad Hinsen
Nick, I would try to find out if pgcc has any compatibility switches. I saw you turned optimization off but sometimes there is more you can do disable some of the advanced behind the scenes magic. So apply all those switches, run the tests and then try them one by one to find out how many

Compiling Python using the Portland Group compiler

2006-07-12 Thread Konrad Hinsen
I am trying to install Python 2.4.3 on an AMD Opteron system using the Portland Group's compiler (pgcc). Using CC=pgcc -DNCURSES_ENABLE_STDBOOL_H=0 OPT=-O0 LINKFORSHARED=-Wl,- export-dynamic ./configure --without-cxx I finally managed to obtain an executable that would start and work, but

Re: Compiling Python using the Portland Group compiler

2006-07-12 Thread Nick Vatamaniuc
Konrad, I would try to find out if pgcc has any compatibility switches. I saw you turned optimization off but sometimes there is more you can do disable some of the advanced behind the scenes magic. So apply all those switches, run the tests and then try them one by one to find out how many you