aboutsummaryrefslogtreecommitdiffstats
path: root/config-msvc
blob: a1bc2cec0e3ceab4885fcb5492edfded883897a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
wordsize=$1
if ! test "$wordsize" = "32" -o "$wordsize" = "64"; then
    echo "Usage: $0 {32,64}"
    exit 2
fi
objdump=
if test "$wordsize" = "64"; then
    objdump=OBJDUMP=x86_64-w64-mingw32-objdump
fi
CC=cl CXX="cl -TP -GR" ./configure --disable-test-compare-images --enable-external-libs --with-windows-wordsize=$wordsize --with-buildrules=msvc $objdump