Differences From Artifact [612bd8947c]:
- Executable file build/make-kit-crosscompile — part of check-in [4e8d261d38] at 2012-02-01 07:56:32 on branch trunk — Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" (user: rkeene, size: 572) [annotate] [blame] [check-ins using]
To 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...]
5 5 6 6 exit 1 7 7 fi 8 8 9 9 CCROOT="${HOME}/root/cross-compilers/${CROSS}" 10 10 CCROOTBIN="${CCROOT}/bin" 11 11 12 -PATH="$(pwd)/build/fake-bin:${CCROOT}/${CROSS}/bin:${PATH}:${CCROOTBIN}" 12 +PATH="$(pwd)/build/fake-bin:${PATH}:${CCROOTBIN}" 13 13 AR="${CCROOTBIN}/${CROSS}-ar" 14 14 CC="${CCROOTBIN}/${CROSS}-gcc ${CC_ADD}" 15 15 CXX="${CCROOTBIN}/${CROSS}-g++ ${CC_ADD}" 16 16 RANLIB="${CCROOTBIN}/${CROSS}-ranlib" 17 17 if [ -z "${STRIP}" ]; then 18 18 STRIP="${CCROOTBIN}/${CROSS}-strip" 19 19 fi 20 20 export PATH AR CC CXX RANLIB STRIP 21 21 22 22 ./kitcreator "$@" --host="${CROSS}"