Hi, I have some odd behaviour I'd like to ask for advice on. I have some C code which behaves as follows
If I build and run my unit tests, they run but some specific tests fail. These involve making an array of long long's, and shifting bits around.
If I copy the entire source tree to another server, and build and run it there, the tests all pass.
If I copy the binary from part 2 above back to the first server, the tests run and pass.
If I copy the binary from part 1 to the second server, they do not run at all, saying "/lib64/tls/libc.so.6: version `GLIBC_2.4' not found"
So this looks like glibc2.4 is binary compatible with earlier versions, but does not treat long longs the same. (Both servers are x86_64 by the way, both running Linux).
So I try this:
Server 1:
ldd -v run_basic_tests
linux-vdso.so.1 => (0x00007fff3adfd000)
libcunit.so.1 => /home/zam/bin/lib/libcunit.so.1 (0x00007fe9328a1000)
libc.so.6 => /lib/libc.so.6 (0x00007fe93252f000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe932aaf000)
Version information:
./run_basic_tests:
libc.so.6 (GLIBC_2.4) => /lib/libc.so.6
libc.so.6 (GLIBC_2.3.4) => /lib/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib/libc.so.6
/home/zam/bin/lib/libcunit.so.1:
libc.so.6 (GLIBC_2.4) => /lib/libc.so.6
libc.so.6 (GLIBC_2.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib/libc.so.6
/lib/libc.so.6:
ld-linux-x86-64.so.2 (GLIBC_PRIVATE) => /lib64/ld-linux-x86-64.so.2
ld-linux-x86-64.so.2 (GLIBC_2.3) => /lib64/ld-linux-x86-64.so.2
Server 2:
ldd -v run_basic_tests
libcunit.so.1 => /homes/zi/bin/lib/libcunit.so.1 (0x0000002a95557000)
libc.so.6 => /lib64/tls/libc.so.6 (0x0000003c31d00000)
/lib64/ld-linux-x86-64.so.2 (0x0000003c31900000)
Version information:
./run_basic_tests:
libc.so.6 (GLIBC_2.2.5) => /lib64/tls/libc.so.6
/homes/zi/bin/lib/libcunit.so.1:
libc.so.6 (GLIBC_2.3) => /lib64/tls/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib64/tls/libc.so.6
/lib64/tls/libc.so.6:
ld-linux-x86-64.so.2 (GLIBC_2.2.5) => /lib64/ld-linux-x86-64.so.2
ld-linux-x86-64.so.2 (GLIBC_2.3) => /lib64/ld-linux-x86-64.so.2
ld-linux-x86-64.so.2 (GLIBC_PRIVATE) => /lib64/ld-linux-x86-64.so.2
Anyone have any idea
How glibc2.4 might have changed it's treatment of long longs? The Linux Foundation mentions here that Glibc 2.4 treats long doubles differently.
How I could dissect this problem further.
regards
Z

gcc -von each box? – caf Oct 7 at 23:40