Artifact b27dfe1f7d7aeb638f8cdc449de6559189db7062:
- 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]
#! /bin/sh if [ -z "${CROSS}" ]; then echo 'Error: Environment variable CROSS is empty/unset. Aborting.' >&2 exit 1 fi PATH="${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 ./kitcreator "$@" --host="${CROSS}"