Overview
Comment: | Updated static build script to use MUSL instead of dietlibc since MUSL is more complete |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | df5e53167ed80d002c8779255cfab9aeb7fdf3bf |
User & Date: | rkeene on 2014-05-22 05:53:44 |
Other Links: | manifest | tags |
Context
2014-05-22
| ||
17:02 | Upgraded to tcc4tcl 0.14 check-in: 8b2ac4d64e user: rkeene tags: trunk | |
05:53 | Updated static build script to use MUSL instead of dietlibc since MUSL is more complete check-in: df5e53167e user: rkeene tags: trunk | |
05:14 | Updated to latest tcc4tcl and request no dlopen() symbol from TCC unless we likely will not have one check-in: cd75207dd1 user: rkeene tags: trunk | |
Changes
Modified build/make-minkit-static from [5ddd33e2a4] to [f5218669e8].
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 |
| < < < < < < < |
1 2 3 4 5 6 7 8 9 |
#! /bin/sh
# Set C compiler to diet libc
CC='x86_64-slackware-linux-musl-gcc'
export CC
./build/make-minkit "$@" --disable-load --disable-threads
exit 0
|