tool to fixes some issues in baseline tiffs (with extensions), see http://andreas-romeyke.de
Go to file
art1pirat 3e4e0b691d - init 2023-10-26 15:38:29 +02:00
common - fixed paths and descs 2016-01-20 17:49:52 +01:00
doc - refreshed 2021-03-01 12:52:09 +01:00
docker - init 2023-10-26 15:38:29 +02:00
examples - replaced by minimalistic example 2021-03-01 11:37:04 +01:00
src - fixed type conversion warning 2023-08-10 18:15:48 +02:00
LICENSE - added license information 2016-03-19 22:53:51 +01:00
README.1st - fix link 2019-05-14 14:29:34 +02:00
README.aix - added special README.aix for hints on AIX systems 2013-07-09 10:45:48 +00:00
README.compile - added example for minimal binaries 2023-08-09 11:21:10 +02:00
README.docker - init 2023-10-26 15:38:29 +02:00
README.windows - adapted README.windows to compile it with cmake 2017-01-20 16:25:42 +01:00

README.windows

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