Overview
Comment: | Added initial support for Win64-amd64 nightly builds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9ef1199acbd6d3fe05c04f9fbf1d6c23 |
User & Date: | rkeene on 2013-09-30 06:24:48 |
Other Links: | manifest | tags |
Context
2013-09-30
| ||
06:40 | Updated runner for 64-bit Windows builds to use 64-bit Windows emulator check-in: c27f57d4e0 user: rkeene tags: trunk | |
06:24 | Added initial support for Win64-amd64 nightly builds check-in: 9ef1199acb user: rkeene tags: trunk | |
06:08 | Fixed Mk4tcl compiling issue check-in: 3bd068a425 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [b14ccbc368] to [47564a4663].
︙ | |||
65 66 67 68 69 70 71 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + | )" DISPLAY=:31 export DISPLAY if [ "${BIGBUILD}" = "1" ]; then kits="$(echo normal{,-zip,-nomk4}{,-threaded}{,-statictk,-notk} normal{,-threaded}{,-notk}{,-nomk4}{,-debug}-kitdll win32-i586{,-zip,-nomk4}{,-threaded}{,-notk} win32-i586{,-threaded}{,-notk}{,-nomk4}-kitdll min{,-static} {linux-mipsel-min}{,-debug}{,-kitdll} {linux-i386,solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-zip,-nomk4}{,-threaded}{,-statictk,-notk}{,debug} {solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-threaded}{,-notk}{,-nomk4}{,debug}-kitdll netbsd-i386{,-zip,-nomk4}{,-threaded}{,debug}-notk netbsd-i386{,-threaded}{,-nomk4}{,debug}-notk-kitdll android-arm-notk{,-debug} andoid-arm-notk{,-debug}-kitdll)" else |
︙ | |||
106 107 108 109 110 111 112 113 114 115 116 117 118 119 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | + + + + + + + | ;; win32|win32-*) kitcreator="./build/make-kit-win32" xcompile="1" runnable="1" kitruncmd="wine" ;; win64|win64-*) kitcreator="./build/make-kit-win32" xcompile="1" runnable="1" kitruncmd="wine" args="${args} --enable-64bit" ;; linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-linux-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" ;; |
︙ | |||
351 352 353 354 355 356 357 | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | - + - + - + | # Verify sanity of created kit issane=1 ## Verify that Win32 builds are of correct type ## Verify that DLL builds are of correct type case "-${version}-${kit}-" in |
︙ |