일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- git
- 앱리소스
- apple
- SSL
- css
- WebAuthn
- MSYS2
- openssl
- MYSQL
- 인증
- 앨범북
- albumbook
- 2FA
- FIDO2
- SWIFT
- fido
- 앱스토어
- Xcode
- otpkey
- appres
- kmip
- Nodejs
- Android
- SSH
- 애플
- 안드로이드
- OSX
- MFA
- SwiftUI
- OTP
Archives
- Today
- Total
인디노트
error while loading shared libraries file.so cannot open shared object file: No such file or directory 본문
소스 팁/C, C++, C#
error while loading shared libraries file.so cannot open shared object file: No such file or directory
인디개발자 2018. 11. 4. 23:51리눅스 CentOS 64bit 에서 실행하여 다음과 같이 나올때
./KCSMain: error while loading shared libraries: libKCSAgent.so: cannot open shared object file: No such file or directory
보통 /usr/lib 혹은 /usr/local/lib 에 so 파일을 넣는데 안되는 경우가 있다.
다음 명령을 이용해서 현재 참조하는 라이브러리 패스를 알아 볼 수 있다.
# strace -eopen echo foo
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
foo
+++ exited with 0 +++
[root@agent KCSMain]# ll /lib64
lrwxrwxrwx. 1 root root 9 Apr 23 2018 /lib64 -> usr/lib64
반응형
'소스 팁 > C, C++, C#' 카테고리의 다른 글
linux 환경에서의 메모리 보호기법을 알아보자(3) (0) | 2019.02.06 |
---|---|
linux 환경에서의 메모리 보호기법을 알아보자(4) (0) | 2019.02.06 |
Linux so 파일에 Shared 된 함수명 리스트 (0) | 2018.11.04 |
[LINUX] gcc undefined reference to 오류 처리 하기 (0) | 2018.11.04 |
How to Link Static Library in C/C++ using GCC compiler? (0) | 2018.11.04 |
Comments