일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- OTP
- MYSQL
- OSX
- 인증
- 앱스토어
- git
- FIDO2
- 안드로이드
- Xcode
- openssl
- appres
- albumbook
- 애플
- fido
- 앱리소스
- MFA
- SWIFT
- otpkey
- SwiftUI
- kmip
- SSL
- MSYS2
- Android
- SSH
- apple
- Nodejs
- WebAuthn
- css
- 2FA
- 앨범북
- Today
- Total
인디노트
[LINUX] gcc undefined reference to 오류 처리 하기 본문
gcc test.c
test.c:(.text+0x49): undefined reference to
test.c:(.text+0x71): undefined reference to
test.c:(.text+0x82): undefined reference to
test.c:(.text+0xaa): undefined reference to
test.c:(.text+0xbb): undefined reference to
test.c:(.text+0xe3): undefined reference to
test.c:(.text+0xf4): undefined reference to
test.c:(.text+0x130): undefined reference to
test.c:(.text+0x141): undefined reference to
test.c:(.text+0x17d): undefined reference to
test.c:(.text+0x18e): undefined reference to
test.c:(.text+0x1ca): undefined reference to
test.c:(.text+0x1db): undefined reference to
test.c:(.text+0x217): undefined reference to
test.c:(.text+0x228): undefined reference to
test.c:(.text+0x27d): undefined reference to
test.c:(.text+0x28e): undefined reference to
test.c:(.text+0x2d3): undefined reference to
test.c:(.text+0x30c): undefined reference to
일단 뒤에 함수명은 이유가 있어서 제끼고 ㅋㅋㅋ
to 뒤에는 함수명이 옵니다. ^^;;
네이버를 열심히 뒤지다 보니
저 함수들을 포함하는 라이버러리가 없다 그래서
T.T
gcc -lmylib test.c
이렇게 했습니다.
그래도 똑같이 나는 겁니다.
gcc -lmylib -L/usr/local/lib test.c
이렇게 해주라 그래서 또 해봤는데 똑같은 오류가 납니다. ^^;;
그래서 또 네이버와 구글을 전전 긍긍하다가
KLDP에서
순서 이야기를 살짝 본 기억이 나서 T.T
gcc test.c -lmylib -L/usr/local/lib
이렇게 했습니다.
T.T
a.out가 나옵니다. 흑흑흑
gcc -o test.exe test.c -lmylib -L/usr/local/lib
이렇게 하시면
a.out가 아니고
test.exe로 실행 파일을 생성 할 수 있습니다.
출처: http://talkit.tistory.com/124 [가야태자의 IT이야기]
'소스 팁 > C, C++, C#' 카테고리의 다른 글
error while loading shared libraries file.so cannot open shared object file: No such file or directory (0) | 2018.11.04 |
---|---|
Linux so 파일에 Shared 된 함수명 리스트 (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 |
[LINUX C] C언어에서 JSON (JSON-C) 데이터 읽기 (0) | 2018.10.22 |