Overview
| Comment: | Added more platforms |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a19f84289664566d99915751c321757f |
| User & Date: | rkeene on 2014-05-16 17:32:16 |
| Other Links: | manifest | tags |
Context
|
2014-05-16
| ||
| 17:42 | Updated Tcl 8.4.20 check-in: 92a34120b9 user: rkeene tags: trunk | |
| 17:32 | Added more platforms check-in: a19f842896 user: rkeene tags: trunk | |
| 16:16 | Removed subversion reference check-in: d44089b785 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build-all-platforms.sh from [dd08562c69] to [5cad2ac591].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + |
#! /bin/bash
CCROOT="${HOME}/root/cross-compilers"
SETUP_CC="${CCROOT}/setup-cc"
if [ -z "$1" ]; then
|
| ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | + + + + |
for opt in $opts; do
case "${opt}" in
64)
setup_cc_opts="${setup_cc_opts} 64"
is64bit='1'
;;
32)
setup_cc_opts="${setup_cc_opts} 32"
is64bit='0'
;;
esac
done
if [ "${is64bit}" = '1' ]; then
configure_opts="${configure_opts} --enable-64bit"
fi
|
| ︙ |