Differences From Artifact [05272e8f15]:
- Executable file
build/make-minkit-static
— part of check-in
[b9a63425fb]
at
2010-09-26 04:46:05
on branch trunk
— Updated ARM and Static internal build scripts to use Minimal build script
Added internal test script (user: rkeene, size: 453) [annotate] [blame] [check-ins using]
To Artifact [5ddd33e2a4]:
- Executable file
build/make-minkit-static
— part of check-in
[e143e5ef08]
at
2010-10-02 08:39:55
on branch trunk
— Updated Minkit build scripts to support buildint KitDLL
Added fix for building KitDLL on platforms without working "strtod"
Updated to support compiling TclVFS extension with "-fPIC" when building KitDLL (user: rkeene, size: 406) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 | #! /bin/sh # Set C compiler to diet libc CC='diet gcc' export CC | < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/sh # Set C compiler to diet libc CC='diet gcc' export CC 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__ ./build/make-minkit "$@" --disable-load --disable-threads rm -f tcl/patchscripts/dietlibc.sh exit 0 |