CMake does not use proper linux interpreter library
Hello, I am doing a little bit of cross compiling but I have a problem with the linux interpreter. I am using the openstlinux-weston distro with the ld-linux-armhf.so.3 but the binaries after coming out of my cross compilation are using ld-linux.so.3. I need a little bit of hints here how to make it proper.
here's my cmake toolchain and cmake itself it's just stupid example to compile simple hello world print out. Thank everybody in advance :)
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabi-gcc)