OpenCV를 ARM용으로 Cross Compile후 strip실행시 아래와 같은 오류 발생
$ strip -s *.sostrip: Unable to recognise the format of the input file 'libopencv_calib3d.so'
원인은 strip을 호스트용을 사용해서 발생한 것으로 ARM용으로 strip을 할수 있는 arm-linux-gnueabi-strip을 사용하면 정상적으로 strip이 되는것을 확인할 수 있다.
$ arm-linux-gnueabi-strip -s *.so
0 comments:
댓글 쓰기