Overview
Comment: | Added script to make kits for publishing |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f6757a3c2240b9cf55702fd20d4a93a2 |
User & Date: | rkeene on 2014-11-24 03:14:38 |
Other Links: | manifest | tags |
Context
2014-11-24
| ||
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 | |
2014-11-23
| ||
20:02 | Updated to free old data (not thread safe, but also not used at the moment) and minor cleanups for CVFS obsfucation check-in: 284eae926e user: rkeene tags: trunk | |
Changes
Added build/make-kits version [9c774f359a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /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) 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 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 ;; maul) echo "Nothing to do yet" ;; done done |