You want to install
Code:
xlC.aix61.rte 9.0.0.1 # XL C/C++ Runtime for AIX 6.1
and it complains about missing
Code:
bos.rte 6.0.0.0 # Base Level Fileset
bos.rte.libc 6.0.0.0 # Base Level Fileset
It clearly tells you in the comment, which BLFs are missing up there; I marked them bold.
You can check with
Code:
lslpp -l| grep -E "bos.rte |bos.rte.libc "
what the version of these two packages are on your system currently and I bet it is 5.x.x.x.
By the looks of it, these are the 2 core packages of your AIX, it looks that it wants AIX 6. Maybe you got a lower version running and so the C-Compiler Runtime you try to install might simply be for AIX 6.
You'll get your AIX Version by
Code:
oslevel -s
|