Differences From Artifact [307fc26ff9]:
- Executable file
build/make-kit-crosscompile
— part of check-in
[f0be818478]
at
2011-08-04 01:11:09
on branch trunk
— Updated to specify full path to C compiler when adjusting path (this fixes tclsh builds for KitDLL)
Updated to not test NetBSD/i386 Tk since NetBSD/i386 has no X11 libraries (user: rkeene, size: 533) [annotate] [blame] [check-ins using]
To Artifact [8fa5b4578c]:
- Executable file build/make-kit-crosscompile — part of check-in [57ce9464cc] at 2011-09-15 20:00:16 on branch trunk — Added support for creating debug symbols builds (user: rkeene, size: 564) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
10 11 12 13 14 15 16 | CCROOTBIN="${CCROOT}/bin" PATH="$(pwd)/build/fake-bin:${CCROOT}/${CROSS}/bin:${PATH}:${CCROOTBIN}" AR="${CCROOTBIN}/${CROSS}-ar" CC="${CCROOTBIN}/${CROSS}-gcc ${CC_ADD}" CXX="${CCROOTBIN}/${CROSS}-g++ ${CC_ADD}" RANLIB="${CCROOTBIN}/${CROSS}-ranlib" | > | > | 10 11 12 13 14 15 16 17 18 19 20 21 22 | CCROOTBIN="${CCROOT}/bin" PATH="$(pwd)/build/fake-bin:${CCROOT}/${CROSS}/bin:${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 export PATH AR CC CXX RANLIB STRIP ./kitcreator "$@" --host="${CROSS}" |