일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- albumbook
- apple
- OSX
- 애플
- MFA
- Android
- SSL
- otpkey
- Nodejs
- fido
- 안드로이드
- 앱리소스
- OTP
- MSYS2
- kmip
- appres
- Xcode
- 2FA
- SwiftUI
- WebAuthn
- MYSQL
- openssl
- SSH
- 인증
- git
- FIDO2
- 앨범북
- SWIFT
- 앱스토어
- css
Archives
- Today
- Total
인디노트
Linux so 파일에 Shared 된 함수명 리스트 본문
$ nm -D /usr/lib/libopenal.so.1
.
.
.
00012ea0 T alcSetThreadContext
000140f0 T alcSuspendContext
U atanf
U calloc
.
.
.
Exported sumbols are indicated by a T
. Required symbols that must be loaded from other shared objects have a U
. Note that the symbol table does not include just functions, but exported variables as well.
See the nm
manual page for more information.
bjdump -T *.so
may also do the job
On a MAC, you need to use nm *.o | c++filt
, as there is no -C
option in nm
.
반응형
'소스 팁 > C, C++, C#' 카테고리의 다른 글
linux 환경에서의 메모리 보호기법을 알아보자(4) (0) | 2019.02.06 |
---|---|
error while loading shared libraries file.so cannot open shared object file: No such file or directory (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 |
우분투에서 json-c library 설치 및 사용 (0) | 2018.11.01 |
Comments