Overview
| Comment: | Fixed issue with 32-bit builds with a 64-bit cross-compiler |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
82debae2517b94f075fe51e43af1ca2f |
| User & Date: | rkeene on 2016-09-02 19:56:04 |
| Other Links: | manifest | tags |
Context
|
2016-09-06
| ||
| 03:32 | Added support for a simplified package build script check-in: cbce55da50 user: rkeene tags: trunk | |
|
2016-09-02
| ||
| 19:56 | Fixed issue with 32-bit builds with a 64-bit cross-compiler check-in: 82debae251 user: rkeene tags: trunk | |
|
2016-08-09
| ||
| 15:15 | Added fix for TclVFS bug 81845 check-in: a7c695de5d user: rkeene tags: trunk | |
Changes
Modified build/make-kit-crosscompile from [db0b9b53a1] to [da80a8dfaa].
| ︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | + + + + + + + + + + + + + + + + + + - + |
ac_cv_func_memcmp_working=yes
tcl_cv_strstr_unbroken=ok
tcl_cv_strtoul_unbroken=ok
tcl_cv_strtod_unbroken=ok
tcl_cv_strtod_buggy=ok
export ac_cv_func_memcmp_working tcl_cv_strstr_unbroken tcl_cv_strtoul_unbroken tcl_cv_strtod_unbroken tcl_cv_strtod_buggy
CROSS_HOST="${CROSS}"
case "${CROSS}" in
x86_64-*)
case " ${CC_ADD} " in
*' -m32 '*)
CROSS_HOST="$(echo "${CROSS_HOST}" | sed 's@^x86_64-@i386-@')"
;;
esac
;;
i?86-*)
case " ${CC_ADD} " in
*' -m64 '*)
CROSS_HOST="$(echo "${CROSS_HOST}" | sed 's@^i.86-@x86_64-@')"
;;
esac
;;
esac
|