Differences From Artifact [bf7d466ffa]:
- Executable file
build/make-kit-crosscompile
— part of check-in
[aa00b0ada2]
at
2012-05-13 18:50:59
on branch trunk
— 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" (user: rkeene, size: 549) [annotate] [blame] [check-ins using] [more...]
To Artifact [b5df8646bf]:
- Executable file build/make-kit-crosscompile — part of check-in [2ba9012dfc] at 2012-05-14 16:57:23 on branch trunk — Updated to no longer use fake "uname" to trick builds for Tcl 8.4.19 (user: rkeene, size: 527) [annotate] [blame] [check-ins using] [more...]
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 |
︙ | ︙ |