I'm trying to compile "hello world" C application for embedded system with ARM processor running uClinux. I'm using this toolchain
When I compiled C application with -static compilation flag the application is working fine.
When I removed -static flag - I got an error: can't load library 'libc.so.6'
libc.so.6 does not exists on the target, into /lib folder on the target device the symbolic link libc.so.0 points to libuClibc-0.9.33.2.so
How can I "tell" compiler to link with libc.so.0?