Overview
| Comment: | Added internal script to build minimal Tclkit for ARM |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
36ac498d1e31596e6c52ef703e9eaf47 |
| User & Date: | rkeene on 2010-09-26 04:42:00 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:42 | Updated to always make registry/dde packages available to Windows rather than creating a "package ifneeded" entry -- this fixes the issue with mismatched versions on Tcl 8.5+ check-in: 5a3882c8f0 user: rkeene tags: trunk | |
| 04:42 | Added internal script to build minimal Tclkit for ARM check-in: 36ac498d1e user: rkeene tags: trunk | |
| 04:41 | Cleaned up cleaning up routine check-in: e71a022c66 user: rkeene tags: trunk | |
Changes
Added build/make-kit-arm version [bdcd7fb0a1].
> > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#! /bin/sh
PATH="${PATH}:/home/rkeene/root/cross-compilers/mipsel-linux-uclibc/usr/mipsel-linux-uclibc/bin"
AR=mipsel-linux-uclibc-ar
CC=mipsel-linux-uclibc-gcc
CXX=false
RANLIB=mipsel-linux-uclibc-ranlib
RC=mipsel-linux-uclibc-windres
STRIP=mipsel-linux-uclibc-strip
export PATH AR CC CXX RANLIB RC STRIP
# Build minimalistic tclkit
KITCREATOR_PKGS=" "
KITCREATOR_MINENCODINGS='true'
export KITCREATOR_PKGS KITCREATOR_MINENCODINGS
./kitcreator "$@" --host=mipsel-linux-uclibc
|