Overview
Comment: | More 64-bit test issues corrected |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4e5fa96d8abec5ddab25fa74fd7246b2 |
User & Date: | rkeene on 2013-10-04 10:45:15 |
Other Links: | manifest | tags |
Context
2013-10-05
| ||
11:53 | Fixed issue with disabling debugging on appropriate prefix check-in: 76d1b562f8 user: rkeene tags: trunk | |
2013-10-04
| ||
10:45 | More 64-bit test issues corrected check-in: 4e5fa96d8a user: rkeene tags: trunk | |
2013-10-03
| ||
19:17 | Added debug output for pkgconfig check-in: ee0059a1c6 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [0dfabb437f] to [80606a5b08].
︙ | ︙ | |||
146 147 148 149 150 151 152 | runnable="0" xcompile="1" iszip="0" ;; esac | | | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | runnable="0" xcompile="1" iszip="0" ;; esac if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)(-|$)' >/dev/null; then args="${args} --enable-64bit" fi case "${kitruncmd}" in wine) WINEPREFIX="${WINEPREFIX32}" export WINEPREFIX |
︙ | ︙ |
Modified build/test/tests/01-pkgconfig.tcl from [7817026d2e] to [4d059e3e0c].
︙ | ︙ | |||
13 14 15 16 17 18 19 | set is64bit 0 } if {[tcl::pkgconfig get 64bit] == $is64bit} { exit 0 } | | | 13 14 15 16 17 18 19 20 21 22 | set is64bit 0 } if {[tcl::pkgconfig get 64bit] == $is64bit} { exit 0 } puts "tcl::pkgconfig get 64 returned [tcl::pkgconfig get 64bit], but platform is 64 bit returned: $is64bit" exit 1 |