mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-11 15:40:58 +00:00
c833295a39
Update the build to support new external-libs layout, and autoconf options to specify windows word size. Split make_windows_releases into multiple scripts.
11 lines
411 B
Bash
11 lines
411 B
Bash
#!/bin/sh
|
|
./configure --disable-test-compare-images --enable-external-libs --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=x86_64-w64-mingw32-dlltool \
|
|
STRIP=x86_64-w64-mingw32-strip \
|
|
OBJDUMP=x86_64-w64-mingw32-objdump
|