This is a discussion on Compilation Problems under AIX5.2 and gcc within the AIX Operating System forums, part of the Unix Operating Systems category; --> Can anyone help ? $ gcc -v Reading specs from /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs gcc version 2.95.3 20010315 (release) store_client.c:355: Could not ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Can anyone help ? $ gcc -v Reading specs from /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs gcc version 2.95.3 20010315 (release) store_client.c:355: Could not find a spill register (insn 174 199 176 (set (reg (plus (reg (nil)) make: 1254-004 The error code from the last command is 1. Also the latest Apache fails compilation as well with errors looking like a math library problem ? Regards Bill |
| |||
| William R. Mattil wrote: > Can anyone help ? > > > > $ gcc -v > Reading specs from > /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs > gcc version 2.95.3 20010315 (release) > > Argh..... hit send too soon - Sorry. Trying to make squid (any recent version) results in: > > > store_client.c:355: Could not find a spill register > (insn 174 199 176 (set (reg > (plus > (reg > (nil)) > make: 1254-004 The error code from the last command is 1. > > > Also the latest Apache fails compilation as well with errors looking > like a math library problem ? > > Regards > > Bill |
| |||
| William R. Mattil wrote: > William R. Mattil wrote: >> >> $ gcc -v >> Reading specs from >> /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs >> gcc version 2.95.3 20010315 (release) >> >> [...] >> >> Also the latest Apache fails compilation as well with errors looking >> like a math library problem ? Maybe. But your gcc is stone-old. Try upgrading gcc and your build tools first! See: http://www.google.de/search?hl=de&q=...i ll+register Regards, Frank |
| |||
| Frank Fegert wrote: > William R. Mattil wrote: >> William R. Mattil wrote: >>> $ gcc -v >>> Reading specs from >>> /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs >>> gcc version 2.95.3 20010315 (release) >>> >>> [...] >>> >>> Also the latest Apache fails compilation as well with errors looking >>> like a math library problem ? > > Maybe. But your gcc is stone-old. Try upgrading gcc and your build > tools first! See: > http://www.google.de/search?hl=de&q=...i ll+register > > Hi Frank, I actually did grab the latest gcc offered as a binary (AIX) and still received the exact same error message. It does appear to be a compiler problem. Apache, perl, and squid all fail compilation. Under AIX 4.21 and AIX4.3.3 I was able to get these built. Regards Bill |
| |||
| William R. Mattil wrote: > Can anyone help ? > > > > $ gcc -v > Reading specs from > /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs > gcc version 2.95.3 20010315 (release) > > > > > store_client.c:355: Could not find a spill register > (insn 174 199 176 (set (reg > (plus > (reg > (nil)) > make: 1254-004 The error code from the last command is 1. > > > Also the latest Apache fails compilation as well with errors looking > like a math library problem ? > > Regards > > Bill Is your gcc built for 5L and modern processor family? While most software is binary compatible with newer AIX/Power versions if compiled correctly, I would expect a compiler to actually make use of unique architecture or OS features, and as such be more picky about running on newer systems. Looks like gcc expects a register when it's not there, which would suggest that your version expects a different underlying CPU architecture. Jozek |
| ||||
| On Wed, 06 Dec 2006 12:54:50 +0000, William R. Mattil wrote: > Frank Fegert wrote: >> William R. Mattil wrote: >>> William R. Mattil wrote: >>>> $ gcc -v >>>> Reading specs from >>>> /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.2.0/2.95.3/specs gcc version >>>> 2.95.3 20010315 (release) >>>> >>>> [...] >>>> >>>> Also the latest Apache fails compilation as well with errors looking >>>> like a math library problem ? >> >> Maybe. But your gcc is stone-old. Try upgrading gcc and your build tools >> first! See: >> http://www.google.de/search?hl=de&q=...i ll+register >> >> >> > Hi Frank, > > I actually did grab the latest gcc offered as a binary (AIX) and still > received the exact same error message. It does appear to be a compiler > problem. Apache, perl, and squid all fail compilation. Under AIX 4.21 and > AIX4.3.3 I was able to get these built. Did you get the version specifically for 5.2? IBM offer different builds of gcc for 5.1, 5.2 and 5.3 and I assume there's a reason for this. http://www-03.ibm.com/servers/aix/pr.../download.html Regards, Ian |