mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
12 lines
479 B
Bash
Executable File
12 lines
479 B
Bash
Executable File
#!/bin/sh
|
|
./configure --disable-test-compare-images --enable-external-libs --enable-werror --with-windows-wordsize=32 --with-buildrules=mingw \
|
|
CC=i686-w64-mingw32-gcc \
|
|
CXX=i686-w64-mingw32-g++ \
|
|
LD=i686-w64-mingw32-ld \
|
|
AR=i686-w64-mingw32-ar \
|
|
RANLIB=i686-w64-mingw32-ranlib \
|
|
DLLTOOL=$(dirname $(type -p i686-w64-mingw32-gcc))/dlltool \
|
|
STRIP=i686-w64-mingw32-strip \
|
|
OBJDUMP=$(dirname $(type -p i686-w64-mingw32-gcc))/objdump \
|
|
${1+"$@"}
|