본문 바로가기

Linux Server

크로스 컴파일시 cannot find -lbluetooth 오류

반응형
크로스 컴파일시 오류

 arm-linux-gcc -o test test.c -lbluetooth
 /usr/local/arm-linux/lib/gcc-lib/arm-linux/3.2.1/../../../../arm-linux/bin/ld: cannot find -lbluetooth
collect2: ld returned 1 exit status

라이브러리를 못찾는 문제입니다.

다음과 같이 라이브러리를 지정하면 컴파일이 가능합니다.

arm-linux-gcc -o test test.c -L/usr/local/arm-linux/lib -lbluetooth 


반응형

'Linux Server' 카테고리의 다른 글

VirtualBox Installation failed 해결방법  (0) 2011.08.08
mbstring 확장 모듈 설정  (0) 2011.04.08
mysql 캐릭터셋 utf8로 설정  (0) 2011.04.07
BlueZ 를 사용할때 컴파일 방법  (0) 2010.11.25
컴파일시 pthread 오류  (0) 2010.04.03