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