Differences From Artifact [0fa76f17e6]:
- Executable file
build/test/test
— part of check-in
[f2f5daaf90]
at
2011-11-19 00:49:53
on branch trunk
— Switched to more complete cross-compiling environment for Linux/x86_64
Added more test builds for Linux/x86_64 (user: rkeene, size: 14785) [annotate] [blame] [check-ins using] [more...]
To Artifact [d2ecf7bf56]:
- Executable file build/test/test — part of check-in [0e5e4f1f32] at 2011-11-19 03:51:14 on branch trunk — Added support for running Linux/x86_64 and Linux/mipsel tests using QEMU (untested) (user: rkeene, size: 15097) [annotate] [blame] [check-ins using]
111
112
113
114
115
116
117
118
119
120
121
122
123
124
...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
;;
linux-mipsel-min|linux-mipsel-min-kitdll)
kitcreator="./build/make-kit-mipsel"
runnable="0"
xcompile="1"
notk="1"
iszip="1"
;;
linux-amd64|linux-amd64-*|\
solaris-i386|solaris-i386-*|\
solaris-amd64|solaris-amd64-*|\
solaris-sparc|solaris-sparc-*|\
solaris-sparc64|solaris-sparc64-*|\
freebsd-amd64|freebsd-amd64-*|\
................................................................................
runnable="0"
xcompile="1"
iszip="0"
if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then
args="${args} --enable-64bit"
fi
;;
esac
if [ "${xcompile}" != "0" ]; then
kit="${kit}-xcompile"
fi
|
>
>
>
>
>
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
;; linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" kitruncmd="qemu-mipsel -L /home/rkeene/root/cross-compilers/mipsel-unknown-linux-uclibc/mipsel-unknown-linux-uclibc/sysroot/" ;; linux-amd64|linux-amd64-*|\ solaris-i386|solaris-i386-*|\ solaris-amd64|solaris-amd64-*|\ solaris-sparc|solaris-sparc-*|\ solaris-sparc64|solaris-sparc64-*|\ freebsd-amd64|freebsd-amd64-*|\ ................................................................................ runnable="0" xcompile="1" iszip="0" if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then args="${args} --enable-64bit" fi if echo "-${kit}-" | grep -- '-linux-amd64-' >/dev/null; then kitruncmd="qemu-x86_64 -L /home/rkeene/root/cross-compilers/x86_64-slackware-linux/x86_64-slackware-linux" fi ;; esac if [ "${xcompile}" != "0" ]; then kit="${kit}-xcompile" fi |