Overview
| Comment: | Updated to output URLs to fetch for mass-build to pull things from KitCreator nightly build |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6ae485c279107e636afc3e9addca4ce2 |
| User & Date: | rkeene on 2014-11-24 03:55:25 |
| Other Links: | manifest | tags |
Context
|
2014-12-02
| ||
| 15:45 | Updated to ignore "dynamictk" if Tk is not being built check-in: b0b6fbd5aa user: rkeene tags: trunk | |
|
2014-11-24
| ||
| 03:55 | Updated to output URLs to fetch for mass-build to pull things from KitCreator nightly build check-in: 6ae485c279 user: rkeene tags: trunk | |
| 03:18 | Fixed up mass-build script check-in: ec0b156eaf user: rkeene tags: trunk | |
Changes
Modified build/make-kits from [dce8d4ecea] to [a9df02454d].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
#! /usr/bin/env bash
versions=(8.5.17 8.6.3)
for version in ${versions[@]}; do
for includetk in 0 1; do
if [ "${includetk}" = '1' ]; then
unset KITCREATOR_PKGS
add=''
else
KITCREATOR_PKGS='itcl mk4tcl'
export KITCREATOR_PKGS
add='sh'
fi
case "$(hostname)" in
powermacg5.home.rkeene.org)
if [ ! -f "tclkit${add}-${version}-macosx10.5-ix86" ]; then
echo "Building x86_64/ix86 Tclkit${add} version ${version}"
CXXFLAGS='-arch i386 -arch x86_64 -mmacosx-version-min=10.5' CFLAGS='-arch i386 -arch x86_64 -mmacosx-version-min=10.5' ./kitcreator ${version} --enable-aqua --host=x86_64-apple-darwin9
mv tclkit-${version} tclkit${add}-${version}-macosx10.5-ix86
fi
if [ ! -f "tclkit${add}-${version}-macosx10.5-powerpc" ]; then
echo "Building ppc64/ppc Tclkit${add} version ${version}"
CXXFLAGS='-arch ppc -arch ppc64 -mmacosx-version-min=10.5' CFLAGS='-arch ppc -arch ppc64 -mmacosx-version-min=10.5' ./kitcreator ${version} --enable-aqua
mv tclkit-${version} tclkit${add}-${version}-macosx10.5-powerpc
fi
;;
maul)
| > > | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
#! /usr/bin/env bash
versions=(8.5.17 8.6.3)
for version in ${versions[@]}; do
for includetk in 0 1; do
if [ "${includetk}" = '1' ]; then
unset KITCREATOR_PKGS
add=''
addurl=''
else
KITCREATOR_PKGS='itcl mk4tcl'
export KITCREATOR_PKGS
add='sh'
addurl='-notk'
fi
case "$(hostname)" in
powermacg5.home.rkeene.org)
if [ ! -f "tclkit${add}-${version}-macosx10.5-ix86" ]; then
echo "Building x86_64/ix86 Tclkit${add} version ${version}"
CXXFLAGS='-arch i386 -arch x86_64 -mmacosx-version-min=10.5' CFLAGS='-arch i386 -arch x86_64 -mmacosx-version-min=10.5' ./kitcreator ${version} --enable-aqua --host=x86_64-apple-darwin9
mv tclkit-${version} tclkit${add}-${version}-macosx10.5-ix86
fi
if [ ! -f "tclkit${add}-${version}-macosx10.5-powerpc" ]; then
echo "Building ppc64/ppc Tclkit${add} version ${version}"
CXXFLAGS='-arch ppc -arch ppc64 -mmacosx-version-min=10.5' CFLAGS='-arch ppc -arch ppc64 -mmacosx-version-min=10.5' ./kitcreator ${version} --enable-aqua
mv tclkit-${version} tclkit${add}-${version}-macosx10.5-powerpc
fi
;;
maul)
echo wget -O tclkit${add}-${version}-android-arm http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-android-arm${addurl}-xcompile
echo wget -O tclkit${add}-${version}-linux-mips http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-linux-mipsel${addurl}-xcompile
echo wget -O tclkit${add}-${version}-solaris-sparc http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-solaris-sparc${addurl}-xcompile
echo wget -O tclkit${add}-${version}-solaris-sparc64 http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-solaris-sparc64${addurl}-xcompile
echo wget -O tclkit${add}-${version}-win32-ix86.exe http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-win32-i586${addurl}-xcompile
echo wget -O tclkit${add}-${version}-win32-x86_64.exe http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-win64-amd64${addurl}-xcompile
echo wget -O tclkit${add}-${version}-rhel5-ix86 http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-linux-i386${addurl}-xcompile
echo wget -O tclkit${add}-${version}-rhel5-x86_64 http://www.rkeene.org/devel/kitcreator/kitbuild/nightly/tclkit-${version}-linux-amd64${addurl}
;;
esac
done
done
|