>/ld-linux.so.2: version `GLIBC_2.2' not found (required by /lib/libc.so.6)
You need to update ld-linux.so.2 as well. This binary is very tightly coupled to libc.so.6, and must always be the same version. >Another thing I am wondering about is: I thought binaries >didn't depend on libc version (within limit)... does >changing from 2.1.2 to 2.2.2 involve rebuilding all the >binaries? No, you don't need to recompile. The GNU C library is backwards compatible but not forwards compatible. That is to say, if you compile an application with glibc 2.1.3 it will run just fine with glibc 2.2.4 or any later version. On the other hand, it won't work if you try to use it with glibc 2.0, for example. >(or, can I have both libs at the same time?) Not easily. p. _______________________________________________ http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm Please visit the above address for information on this list.
