The very famous Zlib for Casio fx/cg. An important tool for deflating/inflating streams and files
Go to file
Lephenixnoir 4afe9228ec
giteapc: build only once
2022-08-29 20:36:00 +02:00
cmake initial commit 2022-04-29 09:49:46 +02:00
CMakeLists.txt now compatible with gint 2.9.0 2022-08-22 20:34:05 +02:00
Makefile.prizm initial commit 2022-04-29 09:49:46 +02:00
README.md initial commit 2022-04-29 09:49:46 +02:00
adler32.c initial commit 2022-04-29 09:49:46 +02:00
build initial commit 2022-04-29 09:49:46 +02:00
compress.c initial commit 2022-04-29 09:49:46 +02:00
crc32.c initial commit 2022-04-29 09:49:46 +02:00
crc32.h initial commit 2022-04-29 09:49:46 +02:00
deflate.c initial commit 2022-04-29 09:49:46 +02:00
deflate.h initial commit 2022-04-29 09:49:46 +02:00
example.c initial commit 2022-04-29 09:49:46 +02:00
giteapc.make giteapc: build only once 2022-08-29 20:36:00 +02:00
gzclose.c initial commit 2022-04-29 09:49:46 +02:00
gzguts.h initial commit 2022-04-29 09:49:46 +02:00
gzlib.c initial commit 2022-04-29 09:49:46 +02:00
gzread.c initial commit 2022-04-29 09:49:46 +02:00
gzwrite.c initial commit 2022-04-29 09:49:46 +02:00
infback.c initial commit 2022-04-29 09:49:46 +02:00
inffast.c initial commit 2022-04-29 09:49:46 +02:00
inffast.h initial commit 2022-04-29 09:49:46 +02:00
inffixed.h initial commit 2022-04-29 09:49:46 +02:00
inflate.c initial commit 2022-04-29 09:49:46 +02:00
inflate.h initial commit 2022-04-29 09:49:46 +02:00
inftrees.c initial commit 2022-04-29 09:49:46 +02:00
inftrees.h initial commit 2022-04-29 09:49:46 +02:00
libczlib.a initial commit 2022-04-29 09:49:46 +02:00
minigzip.c initial commit 2022-04-29 09:49:46 +02:00
trees.c initial commit 2022-04-29 09:49:46 +02:00
trees.h initial commit 2022-04-29 09:49:46 +02:00
uncompr.c initial commit 2022-04-29 09:49:46 +02:00
zconf.h initial commit 2022-04-29 09:49:46 +02:00
zlib.h initial commit 2022-04-29 09:49:46 +02:00
zutil.c initial commit 2022-04-29 09:49:46 +02:00
zutil.h initial commit 2022-04-29 09:49:46 +02:00

README.md

Zlib 1.2.5 sources for Gint

Need to have a fully working gcc toolchain for SH3/SH4 architecture.

Compilation is done by using the adhoc Makefile : make -f Makefile.prizm in the main directory

It should produce the library libczlib.a

The following steps are not automatically done, so please proceed with the following manipulations :

  • copy the library libczlib.a into your SH3/SH4 compiler lib folder
  • copy zlib.h and zconf.h files contained in the include folder into the include folder of the SH3/SH4 compiler

You can also use the gitea install Slyvtt/cZlib1_2_5 command to get an automatic install

when you compile a program for use with Zlib, do not forget to add a -lczlib option in your compilator command line.

and then a #include <zlib.h> in your C/C++ sources