Overview
Comment: | Added support for creating debug symbols builds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
57ce9464cc3f310ca1aeade4bee27c51 |
User & Date: | rkeene on 2011-09-15 20:00:16 |
Other Links: | manifest | tags |
Context
2011-09-16
| ||
00:36 | Fixed issue test not creating KitDLLs that are debugging check-in: 806626aa83 user: rkeene tags: trunk | |
2011-09-15
| ||
20:00 | Added support for creating debug symbols builds check-in: 57ce9464cc user: rkeene tags: trunk | |
2011-09-14
| ||
18:25 | Updated to pass "wget" errors from Tcl build up to stderr check-in: fd32e55ed8 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-crosscompile from [307fc26ff9] to [8fa5b4578c].
︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 | + - + + | CCROOTBIN="${CCROOT}/bin" PATH="$(pwd)/build/fake-bin:${CCROOT}/${CROSS}/bin:${PATH}:${CCROOTBIN}" AR="${CCROOTBIN}/${CROSS}-ar" CC="${CCROOTBIN}/${CROSS}-gcc ${CC_ADD}" CXX="${CCROOTBIN}/${CROSS}-g++ ${CC_ADD}" RANLIB="${CCROOTBIN}/${CROSS}-ranlib" if [ -z "${STRIP}" ]; then |
Modified build/make-kit-mipsel from [ce8f51c4c1] to [6dd0ab095f].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 | - - - - + | #! /bin/sh |
Modified build/make-kit-win32 from [34e60fa0c9] to [248a24bff3].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 | - + | #! /bin/sh AR=i586-mingw32msvc-ar CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ RANLIB=i586-mingw32msvc-ranlib RC=i586-mingw32msvc-windres |
Modified build/make-kit-win64 from [b47b5cb270] to [911c2b9643].
1 2 3 4 5 6 7 | 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 |
Modified build/test/publish-tests from [0064c718f9] to [fa9eba4e6c].
︙ | |||
57 58 59 60 61 62 63 | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | - + | } return "Tcl $version for [string totitle $os] on $cpu" } proc pretty_print_buildinfo {buildinfo} { set desc [list] |
︙ | |||
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | + + + | } "unthreaded" { lappend desc "Without Threads" } "zip" { lappend desc "Kit Filesystem in Zip" } "debug" { lappend desc "With Symbols" } } } } if {[llength $desc] == 0} { return "Default Build" } |
︙ |
Modified build/test/test from [1e502acc62] to [92e44308bd].
︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + - + | Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & echo "$!" )" DISPLAY=:31 export DISPLAY if [ "${BIGBUILD}" = "1" ]; then |
︙ | |||
126 127 128 129 130 131 132 133 134 135 136 137 138 139 | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | + + + + | 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 if [ "${xcompile}" != "0" ]; then kit="${kit}-xcompile" fi |
︙ | |||
170 171 172 173 174 175 176 177 178 179 180 181 182 183 | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | + + + | tempkit="$(echo "${tempkit}" | sed 's@-nomk4-@-@')" nomk4="1" iszip="1" ;; *-kitdll-*) kitdll="1" ;; *-debug-*) args="${args} --enable-symbols" ;; esac done if [ "${kitdll}" = "1" ]; then # Currently no KitDLL uses Zip iszip="0" fi |
︙ | |||
200 201 202 203 204 205 206 | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | - + | failoutputname="${TESTDIR}/kits/failed/tclkit-${version}-${kit}" fi buildlog="${outputname}-build.log" failbuildlog="${failoutputname}-build.log" testresultslog="${outputname}-tests.log" if [ ! -f "${outputname}" ]; then |
︙ | |||
252 253 254 255 256 257 258 259 260 261 262 263 264 265 | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | + + + + + + + + | if [ "${statictk}" = "1" ]; then STATICTK="1" export STATICTK echo " STATICTK=\"${STATICTK}\"" >> "${buildlog}" echo " export STATICTK" >> "${buildlog}" fi if echo "${args}" | grep -- '--enable-symbols' >/dev/null; then STRIP='true' export STRIP echo " STRIP='true'" >> "${buildlog}" echo " export STRIP" >> "${buildlog}" fi if [ "${kitcreator}" != "./kitcreator" ]; then echo " mkdir build" >> "${buildlog}" # Several build scripts rely on minkit to work if grep './build/make-minkit' "${kitcreator}" >/dev/null 2>/dev/null; then echo " cat << \__EOF__ > ./build/make-minkit" >> "${buildlog}" |
︙ |