programing

zLib을 사용하여 감압 및 팽창

goodsources 2023. 10. 23. 21:45
반응형

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

반응형