%general-entities; ]> Glibc-&glibc-version; Glibc Installation of Glibc CC="gcc ${BUILD64}" ../glibc-&glibc-version;/configure \ --prefix=/usr \ --enable-kernel=&glibc-kernel-version; \ --libexecdir=/usr/lib/glibc \ --libdir=/usr/lib \ --enable-obsolete-rpc \ --cache-file=config.cache The install will finish by checking that everything is correctly installed. Unfortunately, it will test for a multilib installation. On PPC64 Pure64 this means it will try to test the non-existent 32-bit loader which has a different name from the 64-bit loader (unlike on other 64-bit architectures). We fool it by creating a symlink to the real loader. ln -sv &glibc-ld-name; /lib/ld.so.1 Now we can remove this symlink: rm -v /lib/ld.so.1