arm-linux-gcc -o hello hello.c로 컴파일해서 file hello 하니
hello:ELF 32-bit LSB executable, ARM, version 1 (ARM), for GNU/Linux 2.0.0, dynamically linked
(uses shared libs), not stripped
로 나오더라구요...

보드에서 실행시키니 파일이 실행이 안 됩니다.

그래서 arm-linux-gcc -static -o hello hello.c로 컴파일 해서 file hello하니
hello:ELF 32-bit LSB executable, ARM, version 1 (ARM),for GNU/Linux 2.0.0 statically linked
not stripped
나오더라구요..

현재 toolchain이 dynamically로 되는것 같습니다.

qt예제도 make로 컴파일시키면 dynamically로 됩니다. makefile 에서 LDFLAGS= -static를추가해서 컴파일하니 에러가 나요...

qt예제를 statically linked 컴파일 하려면 어떻게 하면 되나요?