2016-01-20 17:49:52 +01:00
2021-03-01 12:52:09 +01:00
2023-10-26 15:38:29 +02:00
2025-01-22 17:15:25 +01:00
2016-03-19 22:53:51 +01:00
2019-05-14 14:29:34 +02:00
2023-10-26 15:38:29 +02:00

Crosscompiling to Windows
=========================

== preparation ==
* Install mingw-C-Compiler under Linux


== libtiff ==
* needed to compile fixit_tiff and checkit_tiff
* download the libtiff Source package
** http://libtiff.maptools.org/ (tiff-4.0.6.tar.gz or higher)
* crosscompile libtiff for windows
** cd to unzipped source package
** ./configure --host=i686-w64-mingw32 --disable-win32-io
   (the option "--disable-win32-io" is necessary to get correct filedescriptor
   under windows)
** make -j 2

== fixit_tiff ==
* now compile fixit-tool
** cd to fixit-tool directory
** mkdir build_windows
** cd build_windows
** cmake -DCMAKE_TOOLCHAIN_FILE=../src/toolchain-mingw32.cmake -DTIFF_LIBRARY=~/Downloads/tiff-4.0.6/libtiff/.libs/libtiff.a -DTIFF_INCLUDE_DIR=~/Downloads/tiff-4.0.6/libtiff/ ../src/
** make

Description
tool to fixes some issues in baseline tiffs (with extensions), see http://andreas-romeyke.de
Readme 12 MiB
2022-08-24 12:32:17 +00:00
Languages
C 90.1%
CMake 8.7%
Makefile 0.7%
Dockerfile 0.5%