Overview
Comment: | Updated win64 build script (doesn't build 64-bit yet, oops) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 250dfac130b79a0fa2522f989c866e1ca4ecb0ef |
User & Date: | rkeene on 2012-11-03 01:06:49 |
Other Links: | manifest | tags |
Context
2012-11-03
| ||
12:39 | Updated 64-bit win64 build to use 64-bit compiler check-in: b5d7ffb774 user: rkeene tags: trunk | |
01:06 | Updated win64 build script (doesn't build 64-bit yet, oops) check-in: 250dfac130 user: rkeene tags: trunk | |
2012-10-08
| ||
20:25 | Added support for building TDBC, TDBCsqlite3, sqlite3 in newer Fossil builds check-in: 1f8799a81a user: rkeene tags: trunk | |
Changes
Modified build/make-kit-win64 from [911c2b9643] to [da3b8ad32e].
1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/sh AR=amd64-mingw32msvc-ar CC=amd64-mingw32msvc-gcc CXX=false RANLIB=amd64-mingw32msvc-ranlib RC=amd64-mingw32msvc-windres STRIP="${STRIP:-amd64-mingw32msvc-strip}" export AR CC CXX RANLIB RC STRIP ./kitcreator "$@" --host=amd64-mingw32msvc --enable-64bit |
| | | | | | | |
1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/sh AR=i686-w64-mingw32-ar CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ RANLIB=i686-w64-mingw32-ranlib RC=i686-w64-mingw32-windres STRIP="${STRIP:-i686-w64-mingw32-strip}" export AR CC CXX RANLIB RC STRIP ./kitcreator "$@" --host=i686-w64-mingw32 |