Overview
| Comment: | Updated to disable threads (crashes with Diet Libc) in internal build script | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | bf92561b684b9dd98fb55c1c1d6d119f | 
| User & Date: | rkeene on 2010-09-26 04:46:01 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-26 | ||
| 04:46 | Updated ARM and Static internal build scripts to use Minimal build script Added internal test scriptcheck-in: b9a63425fb user: rkeene tags: trunk | |
| 04:46 | Updated to disable threads (crashes with Diet Libc) in internal build script check-in: bf92561b68 user: rkeene tags: trunk | |
| 04:45 | Updated to support patching Tcl using scripts Created internal build script to create statically linked Diet Libc-based Tclkitscheck-in: e854407d3f user: rkeene tags: trunk | |
Changes
Modified build/make-minkit-static from [f633f55a68] to [19c1f7c112].
| ︙ | ︙ | |||
| 14 15 16 17 18 19 20 | mkdir tcl/patchscripts || exit 1 cat << \__EOF__ > tcl/patchscripts/dietlibc.sh sed 's@^# *include *<string.h>$@&@;T s;p;s@string.h@strings.h@;:s' generic/tclInt.h > generic/tclInt.h.new && cat generic/tclInt.h.new > generic/tclInt.h rm -f generic/tclInt.h.new __EOF__ | | > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 | mkdir tcl/patchscripts || exit 1 cat << \__EOF__ > tcl/patchscripts/dietlibc.sh sed 's@^# *include *<string.h>$@&@;T s;p;s@string.h@strings.h@;:s' generic/tclInt.h > generic/tclInt.h.new && cat generic/tclInt.h.new > generic/tclInt.h rm -f generic/tclInt.h.new __EOF__ ./kitcreator "$@" --disable-load --disable-threads rm -rf tcl/patchscripts exit 0 |