Overview
Comment: | Updated to correctly set 64bit flags |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 9647859b3246b475372ea0a85468aa2ea6766018 |
User & Date: | rkeene on 2013-10-02 11:47:08 |
Other Links: | manifest | tags |
Context
2013-10-03
| ||
18:27 | Updated TclKit icon check-in: 657c96baa3 user: rkeene tags: trunk | |
2013-10-02
| ||
11:47 | Updated to correctly set 64bit flags check-in: 9647859b32 user: rkeene tags: trunk | |
11:45 | Updated check for 64bit platforms check-in: 2de7bba382 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [6aeacbd961] to [0dfabb437f].
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
kitruncmd="wine" ;; win64|win64-*) kitcreator="./build/make-kit-win32" xcompile="1" runnable="1" kitruncmd="wine64" 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" ................................................................................ netbsd-amd64|netbsd-amd64-*|\ hpux-hppa64|hpux-hppa64-*) platform="$(echo "${kit}" | cut -f 1-2 -d '-')" kitcreator="./build/make-kit-${platform}" runnable="0" xcompile="1" iszip="0" if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then args="${args} --enable-64bit" fi ;; esac case "${kitruncmd}" in wine) WINEPREFIX="${WINEPREFIX32}" export WINEPREFIX ;; wine64) |
<
>
>
>
<
<
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
kitruncmd="wine" ;; win64|win64-*) kitcreator="./build/make-kit-win32" xcompile="1" runnable="1" kitruncmd="wine64" ;; linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-linux-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" ................................................................................ netbsd-amd64|netbsd-amd64-*|\ hpux-hppa64|hpux-hppa64-*) platform="$(echo "${kit}" | cut -f 1-2 -d '-')" kitcreator="./build/make-kit-${platform}" 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 ;; wine64) |