Differences From Artifact [f633f55a68]:
- Executable file
build/make-minkit-static
— part of check-in
[e854407d3f]
at
2010-09-26 04:45:57
on branch trunk
— Updated to support patching Tcl using scripts
Created internal build script to create statically linked Diet Libc-based Tclkits (user: rkeene, size: 571) [annotate] [blame] [check-ins using]
To Artifact [19c1f7c112]:
- Executable file build/make-minkit-static — part of check-in [bf92561b68] at 2010-09-26 04:46:01 on branch trunk — Updated to disable threads (crashes with Diet Libc) in internal build script (user: rkeene, size: 622) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
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 |