반응형
zLib을 사용하여 감압 및 팽창
gcc로 리눅스(Ubuntu 8.04)의 zpipe.c 예제를 컴파일하려고 하는데 몇 가지 오류가 발생합니다.
[ubuntu@eeepc:~/Desktop] gcc zpipe.c
/tmp/ccczEQxz.o: In function `def':
zpipe.c:(.text+0x65): undefined reference to `deflateInit_'
zpipe.c:(.text+0xd3): undefined reference to `deflateEnd'
zpipe.c:(.text+0x150): undefined reference to `deflate'
zpipe.c:(.text+0x1e8): undefined reference to `deflateEnd'
zpipe.c:(.text+0x27b): undefined reference to `deflateEnd'
/tmp/ccczEQxz.o: In function `inf':
zpipe.c:(.text+0x314): undefined reference to `inflateInit_'
zpipe.c:(.text+0x382): undefined reference to `inflateEnd'
zpipe.c:(.text+0x3d7): undefined reference to `inflate'
zpipe.c:(.text+0x44b): undefined reference to `inflateEnd'
zpipe.c:(.text+0x4c1): undefined reference to `inflateEnd'
zpipe.c:(.text+0x4f6): undefined reference to `inflateEnd'
collect2: ld returned 1 exit status
[ubuntu@eeepc:~/Desktop]
zLib-dev를 올바르게 설치했는데 왜 이런 오류가 발생하는지 기억하세요?
zlib 라이브러리와도 연결해야 합니다.명령줄의 거의 끝에 -lz만 추가하면 됩니다.
언급URL : https://stackoverflow.com/questions/1632201/error-deflate-and-inflate-with-zlib
반응형
'programing' 카테고리의 다른 글
사이트가 주기적으로 중단되고 "Myql connect error [localhost]: (2002) Connection rejected (400)" 오류가 발생합니다. (0) | 2023.10.23 |
---|---|
크기 8 - Valgrind + C의 잘못된 판독값 (0) | 2023.10.23 |
mysql2 버전(0.3.2)은 이제 Rails 3.1의 일부이므로 ActiveRecord 어댑터가 번들로 제공되지 않습니다. (0) | 2023.10.23 |
SQL 0(음의 값인 경우) (0) | 2023.10.18 |
angularjs: ng-message가 항상 표시됨 (0) | 2023.10.18 |