toolchain-4.4.3.tar.gz을 다운받았습니다.

다운을 받아 압축을 푸니 arm-linux include lib man bin info libexec share
폴더가 존재하더라구요

.bash_profile에서 경로를 설정해줬습니다.
경로를 두가지로 설정했습니다.

먼저 PATH=$PATH:/usr/test/usr/bin
이렇게 했습니다. 그리고 arm-linux-gcc -o he hello.c 컴파일 시키니
오류가 나더라구요

arm-linux-gcc -o he hello.c
/usr/arm/bin/../lib/gcc/arm-linux/3.4.3/../../../../arm-linux/bin/ld: cannot find /usr/arm-linux/lib/libc.so.6
collect2: ld returned 1 exit status

이런 에러가 납니다.

그래서 PATH=$PATH:/usr/arm/arm-linux/bin이렇게 해서
컴파일 시키니

arm-linux-gcc를 인식을 못하네요.
제가 무엇을 잘 못했습니까? 도저히 모르겠어요

답변 부탁드립니다.