Ranlib Troubleshooting Could not read symbols KLDP: static library (.a) 를 사용해서 static library (.a) 를 만드는 것이 불가능 한가요? 빌드시 아래와 같은 에러 메시지가 출력될 수 있다. could not read symbols: Archive has no index; run ranlib to add one 이 경우 ranlib [라이브러리이름]를 사용하여 Index table을 생성해야 한다. 또는 아래와 같이 ar유틸리티를 사용해야 한다. $ ar x libname.a $ ar rcs libadd2.a *.o Favorite site binutils: 정적 라이브러리의 구조 - ar, ranlib 1 References Binutils-static_library-ar,ranlib.pdf ↩