I cross compiled code for PPC on LINUX host - then I uploaded image to target, when I run on target - I get "GLIBC_2.4 not found, any idea?.
I cross compiled code for PPC - when I run on target - I get "GLIBC_2.4 not found
Collapse
X
-
I did this command on target;
root@(none):/user# strings /lib/libc.so.6 | grep GLIBC
GLIBC_2.0
GLIBC_2.1
GLIBC_2.1.1
GLIBC_2.1.2
GLIBC_2.1.3
GLIBC_2.2
GLIBC_2.2.1
GLIBC_2.2.2
GLIBC_2.2.3
GLIBC_2.2.4
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_PRIVATE
root@(none):/user# -
Target doesn't support GLIBC_2.4, it supports upto GLIBC_2.3.3, build this image using Redhat host using cross compiler, how can I force my source code compilation to use GLIBC_2.3 instead GLIBC_2.4, I this is this linking is part of cross compilation tool chain code right?. any idea how can I force lower verison?.Comment
Comment