vote up 0 vote down star

Hi, I have some odd behaviour I'd like to ask for advice on. I have some C code which behaves as follows

  1. 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.

  2. If I copy the entire source tree to another server, and build and run it there, the tests all pass.

  3. If I copy the binary from part 2 above back to the first server, the tests run and pass.

  4. 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

  1. 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.

  2. How I could dissect this problem further.

regards

Z

flag
This is quite probably not due to the glibc version - if you have different versions of glibc, then you probably have different versions of gcc, too - and that is more likely to be why the tests fail in one build and not the other. What's the output of gcc -v on each box? – caf Oct 7 at 23:40
The treatment of long double is only different on PPC32/PPC64 and on s390s/s390x. – Jonathan Leffler Oct 8 at 6:13
Thank you caf and Jonathan for your responses. caf - you are quite right that the two boxes have different versions of gcc. The tests all pass when built on the box that has gcc version 3.4.6 and some fail when built on the box with gcc version 4.3.3. I'll add the full output of gcc -v in a subsequent comment (600 char limit) – Zam Oct 8 at 8:17
gcc -v (first box) Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.3.3-5ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 .. contd – Zam Oct 8 at 8:20
gcc -c (first box) contd --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) – Zam Oct 8 at 8:20
show 3 more comments

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.