> -----Original Message----- > From: Porter, John (Contractor) [mailto:[EMAIL PROTECTED] > Sent: Monday, March 18, 2002 12:07 PM > To: '[EMAIL PROTECTED]' > Subject: Request binary build info doc. (And run_tests buglet) > > > > Hi. Recently I downloaded and installed the 1.1.3-1 test binaries > for Linux. Attempts to execute run_tests failed utterly. > When sh tried to run tcc, it failed with a "no such file or directory" > error. Strange, since tcc exists. I'm presuming that a shared lib > is not found -- but attempts to run ldd on the tcc binary also fail > with the same error.
I haven't tried the tests "out of the box" on RH 7.2 but they're known to work (and did for me on 7.1). This sort of behavior usually means the dynamic linker described in the binary is not found. To diagnose this, could you try doing "objdump -x" on the tcc binary. You'll probably find that it requires /lib/ld-linux.so.2, and further, you'll probably find that you don't have that. Adding that to the system should fix your problems. Mats
