Overview
Comment: | Updated to use standard cross-compile script for Linux/MIPS target
Updated to include "mips" support in fake uname Updated to not use fake uname for "mips" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
aa00b0ada299e81df544f8d6ad7f51b5 |
User & Date: | rkeene on 2012-05-13 18:50:59 |
Other Links: | manifest | tags |
Context
2012-05-14
| ||
16:57 | Updated to no longer use fake "uname" to trick builds for Tcl 8.4.19 check-in: 2ba9012dfc user: rkeene tags: trunk | |
2012-05-13
| ||
18:50 |
Updated to use standard cross-compile script for Linux/MIPS target
Updated to include "mips" support in fake uname Updated to not use fake uname for "mips" check-in: aa00b0ada2 user: rkeene tags: trunk | |
18:50 | Updated to latest config.guess/config.sub from autoconf check-in: 11f339bd59 user: rkeene tags: trunk | |
Changes
Modified build/fake-bin/uname from [b06e7fd1c1] to [482a7c7be3].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | + + + + + + + + | #! /usr/bin/env bash if [ "$1" == "--fake" ]; then echo "true" exit 0 fi # Some systems do not compile well with this fake uname in place # provide the real uname for them. case "${CROSS}" in mipsel-unknown-linux-uclibc) unset CROSS ;; esac if [ -z "${CROSS}" ]; then # If not cross compiling, revert to system uname while [ "$(uname --fake 2>/dev/null)" == "true" -a -n "${PATH}" ]; do PATH="$(echo "${PATH}" | /usr/bin/sed 's@^[^:]*$@@;s@^[^:]*:@@')" export PATH |
︙ | |||
63 64 65 66 67 68 69 | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - + + + + | ;; i?86-*) sysmachine="i686" ;; ia64-*) sysmachine="ia64" ;; |
︙ |
Modified build/make-kit-crosscompile from [612bd8947c] to [bf7d466ffa].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + | #! /usr/bin/env bash if [ -z "${CROSS}" ]; then echo 'Error: Environment variable CROSS is empty/unset. Aborting.' >&2 exit 1 fi CCROOT="${HOME}/root/cross-compilers/${CROSS}" CCROOTBIN="${CCROOT}/bin" |
︙ |
Modified build/make-kit-linux-mipsel from [6dd0ab095f] to [819d882cb2].
1 2 | 1 2 3 4 5 6 | - - + - - - - - + - + | #! /bin/sh |
Modified build/test/test from [45ea83463c] to [ac78f28fab].
︙ | |||
65 66 67 68 69 70 71 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + | )" DISPLAY=:31 export DISPLAY if [ "${BIGBUILD}" = "1" ]; then kits="$(echo normal{,-zip,-nomk4}{,-threaded}{,-statictk,-notk} normal{,-threaded}{,-notk}{,-nomk4}{,-debug}-kitdll win32-i586{,-zip,-nomk4}{,-threaded}{,-notk} win32-i586{,-threaded}{,-notk}{,-nomk4}-kitdll min{,-static} {linux-mipsel-min}{,-debug}{,-kitdll} {linux-i386,solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-zip,-nomk4}{,-threaded}{,-statictk,-notk}{,debug} {solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-threaded}{,-notk}{,-nomk4}{,debug}-kitdll netbsd-i386{,-zip,-nomk4}{,-threaded}{,debug}-notk netbsd-i386{,-threaded}{,-nomk4}{,debug}-notk-kitdll android-arm-notk{,-debug} andoid-arm-notk{,-debug}-kitdll)" else |
︙ | |||
113 114 115 116 117 118 119 120 121 122 123 124 125 126 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | + | kitcreator="./build/make-kit-linux-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" ;; android-arm|android-arm-*|\ linux-mipsel|linux-mipsel-*|\ linux-i386|linux-i386-*|\ linux-amd64|linux-amd64-*|\ solaris-i386|solaris-i386-*|\ solaris-amd64|solaris-amd64-*|\ solaris-sparc|solaris-sparc-*|\ solaris-sparc64|solaris-sparc64-*|\ freebsd-amd64|freebsd-amd64-*|\ |
︙ |