Differences From Artifact [57487d4186]:
- Executable file build/cackey_win64_build/build.sh — part of check-in [a2b7df3c9a] at 2012-07-19 05:39:06 on branch trunk — Updated to build using mingw32-w64 built-in winscard (user: rkeene, size: 284) [annotate] [blame] [check-ins using]
To Artifact [359d2acbba]:
- Executable file build/cackey_win64_build/build.sh — part of check-in [39dd453bcd] at 2012-07-19 05:43:19 on branch trunk — Corrected name of new Windows compiler (user: rkeene, size: 285) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 |
#! /bin/bash make distclean ./configure --with-pcsc-headers="$(pwd)/build/cackey_win64_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win64_build/lib -lwinscard" --host=amd64-mingw32msvc CPPFLAGS="-I$(pwd)/build/cackey_win64_build/include" || exit 1 make || exit 1 exit 0 |
| |
1 2 3 4 5 6 7 8 9 |
#! /bin/bash
make distclean
./configure --with-pcsc-headers="$(pwd)/build/cackey_win64_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win64_build/lib -lwinscard" --host=x86_64-w64-mingw32 CPPFLAGS="-I$(pwd)/build/cackey_win64_build/include" || exit 1
make || exit 1
exit 0
|