Overview
Comment: | Updated to indicate win32 binaries are not runnable without WINE |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b6bf532c8e38c19ea0eac9c65b77d9f9fef337bb |
User & Date: | rkeene on 2012-08-27 16:09:20 |
Other Links: | manifest | tags |
Context
2012-09-09
| ||
19:44 | Updated to remove TclOO from minimal builds check-in: 833e605ae0 user: rkeene tags: trunk | |
2012-08-27
| ||
16:09 | Updated to indicate win32 binaries are not runnable without WINE check-in: b6bf532c8e user: rkeene tags: trunk | |
03:32 |
Updated Win32 sanity checks to be more tolerant of different file magic
Disabled use of WINE for testing for now, since its not installed on the current system check-in: b850a69d3e user: rkeene tags: trunk | |
Changes
Modified build/test/test from [cdcc7c93e0] to [a279f86cb1].
104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
notk="1" kit="${os}-${cpu}-min-static" ;; win32|win32-*) kitcreator="./build/make-kit-win32" xcompile="1" # XXX: Disabled for now, since I don't have WINE installed #kitruncmd="wine" ;; linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-linux-mipsel" runnable="0" xcompile="1" notk="1" |
> |
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
notk="1"
kit="${os}-${cpu}-min-static"
;;
win32|win32-*)
kitcreator="./build/make-kit-win32"
xcompile="1"
# XXX: Disabled for now, since I don't have WINE installed
runnable="0"
#kitruncmd="wine"
;;
linux-mipsel-min|linux-mipsel-min-kitdll)
kitcreator="./build/make-kit-linux-mipsel"
runnable="0"
xcompile="1"
notk="1"
|