Overview
Comment: | Updated to support MUSL better |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4d18f784a8d83bfc2cd1852be29c1941 |
User & Date: | rkeene on 2014-08-31 19:43:50 |
Other Links: | manifest | tags |
Context
2014-08-31
| ||
19:44 | tcc4tcl 0.23 check-in: e5a7a25b38 user: rkeene tags: trunk, 0.23 | |
19:43 | Updated to support MUSL better check-in: 4d18f784a8 user: rkeene tags: trunk | |
2014-07-19
| ||
06:17 | More additional comments check-in: 57b7fc959d user: rkeene tags: trunk | |
Changes
Modified build/autogen.sh from [95541498bc] to [a32990e3be].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + + + + + + | done aclocal -I aclocal autoconf automake -fca rm -rf autom4te.cache # Add Linux/MUSL support if missing if ! grep '[-]musl' config.sub >/dev/null 2>/dev/null; then sed 's@\(-*\)linux-gnu\* @\1linux-musl | &@g' config.sub > config.sub.new cat config.sub.new > config.sub rm -f config.sub.new fi |
Modified build/build-platform from [1ca5386209] to [9efba155e4].
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | - + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + | echo "No such platform: ${platform}" >&2 exit 1 fi dir="$(echo "${dir}" | sed 's@/$@@')" |
︙ | |||
105 106 107 108 109 110 111 | 124 125 126 127 128 129 130 131 132 133 134 135 136 | - + | x86_64-w64-mingw32) WINEPREFIX="${HOME}/.wine64" export WINEPREFIX make TCLSH="wine64 ${dir}/lib/tclsh.exe" test ;; x86_64-redhat5-linux) |