Ed W wrote:
Hmm, the relevant config.log snippet is shown below, but it's not 100%
obvious what creates the error - I guess it would be the
| #define LIBC_VERSION "libc.so.0
| ld-uClibc.so.0"
Which seems peculiarly split over two lines?
Hmm, seems like a uclibc issue
The test is:
LIBC_VERSION=$(
$READELF -d libctest | \
$EGREP NEEDED.*libc\\.so | \
$AWK '{print $NF}' | sed -e 's:\[::' -e 's:\]::'
)
readelf gives me:
0x00000001 (NEEDED) Shared library: [libc.so.0]
0x00000001 (NEEDED) Shared library: [ld-uClibc.so.0]
Hmm, will need to see what it needs this for so see what's the correct
answer
Ed W