Overview
Comment: | Added support for running Linux/x86_64 and Linux/mipsel tests using QEMU (untested) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 0e5e4f1f325134813e264fba9c573deb188aa3b0 |
User & Date: | rkeene on 2011-11-19 03:51:14 |
Other Links: | manifest | tags |
Context
2011-11-19
| ||
05:26 | Corrected runnable flag for kits being tested with QEMU check-in: 344f8a902c user: rkeene tags: trunk | |
03:51 | Added support for running Linux/x86_64 and Linux/mipsel tests using QEMU (untested) check-in: 0e5e4f1f32 user: rkeene tags: trunk | |
00:49 |
Switched to more complete cross-compiling environment for Linux/x86_64
Added more test builds for Linux/x86_64 check-in: f2f5daaf90 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [0fa76f17e6] to [d2ecf7bf56].
111 111 ;; 112 112 linux-mipsel-min|linux-mipsel-min-kitdll) 113 113 kitcreator="./build/make-kit-mipsel" 114 114 runnable="0" 115 115 xcompile="1" 116 116 notk="1" 117 117 iszip="1" 118 + kitruncmd="qemu-mipsel -L /home/rkeene/root/cross-compilers/mipsel-unknown-linux-uclibc/mipsel-unknown-linux-uclibc/sysroot/" 118 119 ;; 119 120 linux-amd64|linux-amd64-*|\ 120 121 solaris-i386|solaris-i386-*|\ 121 122 solaris-amd64|solaris-amd64-*|\ 122 123 solaris-sparc|solaris-sparc-*|\ 123 124 solaris-sparc64|solaris-sparc64-*|\ 124 125 freebsd-amd64|freebsd-amd64-*|\ ................................................................................ 130 131 runnable="0" 131 132 xcompile="1" 132 133 iszip="0" 133 134 134 135 if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then 135 136 args="${args} --enable-64bit" 136 137 fi 138 + 139 + if echo "-${kit}-" | grep -- '-linux-amd64-' >/dev/null; then 140 + kitruncmd="qemu-x86_64 -L /home/rkeene/root/cross-compilers/x86_64-slackware-linux/x86_64-slackware-linux" 141 + fi 137 142 ;; 138 143 esac 139 144 140 145 if [ "${xcompile}" != "0" ]; then 141 146 kit="${kit}-xcompile" 142 147 fi 143 148