Overview
| Comment: | Updated to no longer use fake "uname" to trick builds for Tcl 8.4.19 | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
2ba9012dfce0962e5e91f05f053fc9b6 | 
| User & Date: | rkeene on 2012-05-14 16:57:23 | 
| Other Links: | manifest | tags | 
Context
| 
   2012-06-30 
 | ||
| 15:34 | Updated to statically link against libgcc when building a shared object (KitDLL) check-in: 0432734c0a user: rkeene tags: trunk | |
| 
   2012-05-14 
 | ||
| 16:57 | Updated to no longer use fake "uname" to trick builds for Tcl 8.4.19 check-in: 2ba9012dfc user: rkeene tags: trunk | |
| 
   2012-05-13 
 | ||
| 18:50 | 
Updated to use standard cross-compile script for Linux/MIPS target
 Updated to include "mips" support in fake uname Updated to not use fake uname for "mips" check-in: aa00b0ada2 user: rkeene tags: trunk | |
Changes
Deleted build/fake-bin/uname version [482a7c7be3].
  | 
  | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < <  | 
Modified build/make-kit-crosscompile from [bf7d466ffa] to [b5df8646bf].
1 2 3 4 5 6 7 8 9 10 11  | 
#! /usr/bin/env bash
if [ -z "${CROSS}" ]; then
	echo 'Error: Environment variable CROSS is empty/unset.  Aborting.' >&2
	exit 1
fi
CCROOT="${HOME}/root/cross-compilers/${CROSS}"
CCROOTBIN="${CCROOT}/bin"
 | |  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  | 
#! /usr/bin/env bash
if [ -z "${CROSS}" ]; then
	echo 'Error: Environment variable CROSS is empty/unset.  Aborting.' >&2
	exit 1
fi
CCROOT="${HOME}/root/cross-compilers/${CROSS}"
CCROOTBIN="${CCROOT}/bin"
PATH="${PATH}:${CCROOTBIN}"
AR="${CCROOTBIN}/${CROSS}-ar"
CC="${CCROOTBIN}/${CROSS}-gcc ${CC_ADD}"
CXX="${CCROOTBIN}/${CROSS}-g++ ${CC_ADD}"
RANLIB="${CCROOTBIN}/${CROSS}-ranlib"
if [ -z "${STRIP}" ]; then
	STRIP="${CCROOTBIN}/${CROSS}-strip"
fi
 | 
| ︙ | ︙ |