Differences From Artifact [b27dfe1f7d]:
- Executable file
build/make-kit-crosscompile
— part of check-in
[250028d1d6]
at
2011-08-02 23:49:37
on branch trunk
— Added more cross-compiler build scripts
Added more cross-compiled tests (user: rkeene, size: 376) [annotate] [blame] [check-ins using]
To Artifact [36d16f76ac]:
- Executable file
build/make-kit-crosscompile
— part of check-in
[8efaf47298]
at
2011-08-03 19:53:24
on branch trunk
— Added more cross-compilers
Updated cross-compiling to use a fake "uname" to deal with Tcl's broken-ness with respect to cross-compiling (user: rkeene, size: 451) [annotate] [blame] [check-ins using]
|
| | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/bash if [ -z "${CROSS}" ]; then echo 'Error: Environment variable CROSS is empty/unset. Aborting.' >&2 exit 1 fi PATH="$(pwd)/build/fake-bin:${HOME}/root/cross-compilers/${CROSS}/${CROSS}/bin:${PATH}:${HOME}/root/cross-compilers/${CROSS}/bin" AR="${CROSS}-ar" CC="${CROSS}-gcc ${CC_ADD}" CXX="${CROSS}-g++ ${CC_ADD}" RANLIB="${CROSS}-ranlib" STRIP="${CROSS}-strip" export PATH AR CC CXX RANLIB STRIP |
︙ | ︙ |