Readme.txt 796 B

1234567891011121314151617181920
  1. The zlib.exe is a SFX archive with set of include files required to build
  2. Firebird with zlib support and compiled zlib DLL's for Windows x86, x64 and arm64
  3. architectures.
  4. The source code of zlib library was downloaded from
  5. https://www.zlib.net/zlib131.zip
  6. It was built with VS 2022 compilers using commands specified at win32/Makefile.msc:
  7. Open VsDevCmd prompt for the given architectures (-arch=amd64, -arch=x86 or -arch=arm64) and run:
  8. nmake -f win32/Makefile.msc
  9. Note, ASM files are not used in build as they were not updated for a long time, not
  10. officially supported and 32-bit build crashes in simplest test, see:
  11. https://github.com/madler/zlib/issues/41
  12. https://github.com/madler/zlib/issues/200
  13. https://github.com/madler/zlib/issues/223
  14. https://github.com/madler/zlib/issues/249