Dear All,
To use 'arm-none-eabi-gcc' I've got a gcc-arm-none-eabi-6-2017-q2-update.ar.bz2 from ARM Toolchain.
But I came across the following issue GLIBC_2.14 and GLIBC_2.11 need to use.
u24c02:/home/nick/gcc/gcc-arm-none-eabi-6-2017-q2-update/bin] arm-none-eabi-gccarm-none-eabi-gcc: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by arm-none-eabi-gcc)arm-none-eabi-gcc: /lib64/libc.so.6: version `GLIBC_2.11' not found (required by arm-none-eabi-gcc)
I'm using CentOS 5 64bit.
How do I fix my issue to use gcc-arm-none-eabi-6-2017-q2-update's arm-none-eabi-gcc?
What am I supposed to do to resolve this problem?
I had a similar problem with RHEL 6. The issue is that your Centos OS was built with an older version of GLIBC. The tool is trying to tell that to you with the error message. You would get that same error message just asking "arm-none-eabi-gcc --version".
To see what version of GLIBC you have try this command:
ldd --version
I got that from this post:
www.linuxquestions.org/.../
There are warnings about trying to use latter versions of glibc on RHEL 6 ....
https://unix.stackexchange.com/questions/360551/problems-running-glibc-2-14-on-rhel6
The release notes for the tools tell you which versions of the Build OS that are supported. The last one that supports RHEL 6 is
Thanks ian