Overview
| Comment: | Fixed up mass-build script |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ec0b156eaf431b898c437fd37ad71900 |
| User & Date: | rkeene on 2014-11-24 03:18:59 |
| Other Links: | manifest | tags |
Context
|
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 | |
| 03:14 | Added script to make kits for publishing check-in: f6757a3c22 user: rkeene tags: trunk | |
Changes
Modified build/make-kits from [9c774f359a] to [dce8d4ecea].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 | export KITCREATOR_PKGS add='sh' fi case "$(hostname)" in powermacg5.home.rkeene.org) | > > > | | > > > > | | > > | 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 |
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)
echo "Nothing to do yet"
;;
esac
done
done
|