Overview
Comment: | Added more cross-compiler build scripts
Added more cross-compiled tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
250028d1d6e5191b648d4aafd5edc138 |
User & Date: | rkeene on 2011-08-02 23:49:37 |
Other Links: | manifest | tags |
Context
2011-08-03
| ||
19:53 |
Added more cross-compilers
Updated cross-compiling to use a fake "uname" to deal with Tcl's broken-ness with respect to cross-compiling check-in: 8efaf47298 user: rkeene tags: trunk | |
2011-08-02
| ||
23:49 |
Added more cross-compiler build scripts
Added more cross-compiled tests check-in: 250028d1d6 user: rkeene tags: trunk | |
2011-07-20
| ||
22:52 | Added missing build flag check-in: e125d9df77 user: rkeene tags: trunk | |
Changes
Added build/make-kit-crosscompile version [b27dfe1f7d].
|
Added build/make-kit-hpux-hppa64 version [c50e5cc86a].
|
Modified build/make-kit-linux-amd64 from [72e0bb339e] to [069082a8ec].
1 2 | 1 2 3 4 5 6 7 | - - + - - - - - + + - + | #! /bin/sh |
Added build/make-kit-solaris-amd64 version [c26413604c].
|
Added build/make-kit-solaris-i386 version [439be66c77].
|
Added build/make-kit-solaris-sparc version [dc7f25759c].
|
Added build/make-kit-solaris-sparc64 version [34488cfc02].
|
Modified build/test/test from [2b7bb890ec] to [bf30a5a38f].
︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | + + + + + + + + + + + + + + - + | if echo "${file}" | grep -- '-build.log$' >/dev/null; then continue fi rm -f "${file}" done # Disable WINE debugging WINEPREFIX="${TESTDIR}/.wine" export WINEPREFIX rm -rf "${WINEPREFIX}" mkdir "${WINEPREFIX}" cat << \_EOF_ > "${WINEPREFIX}/update-reg" [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug] "Auto"=dword:00000001 "Debugger"="false" _EOF_ regedit "${WINEPREFIX}/update-reg" >/dev/null 2>/dev/null # Start Xvfb for X11-based tests XVFB_PID="$( Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & echo "$!" )" DISPLAY=:31 export DISPLAY failed="" |
︙ | |||
92 93 94 95 96 97 98 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | - - + + + + + + + + | linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" ;; |
︙ | |||
234 235 236 237 238 239 240 241 242 243 244 245 246 247 | 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | + + + + + + + + + | # Several build scripts rely on minkit to work if grep './build/make-minkit' "${kitcreator}" >/dev/null 2>/dev/null; then echo " cat << \__EOF__ > ./build/make-minkit" >> "${buildlog}" sed 's@^@ @' './build/make-minkit' >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi # Several build scripts rely on make-kit-crosscompile to work if grep './build/make-kit-crosscompile' "${kitcreator}" >/dev/null 2>/dev/null; then echo " cat << \__EOF__ > ./build/make-kit-crosscompile" >> "${buildlog}" sed 's@^@ @' './build/make-kit-crosscompile' >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi echo " cat << \__EOF__ > ${kitcreator}" >> "${buildlog}" sed 's@^@ @' "${kitcreator}" >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi echo " \"${kitcreator}\" \"${version}\" ${args}" >> "${buildlog}" echo '' >> "${buildlog}" |
︙ |