Overview
| Comment: | Updated TCC to build only on ix86/x86_64 platforms Fixed bugs in TCC 0.4 with patches and build.sh updates |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3e4cf5d7be020a182e71efab5bb99e40 |
| User & Date: | rkeene on 2011-07-25 13:52:44 |
| Other Links: | manifest | tags |
Context
|
2011-07-25
| ||
| 14:47 | Removed x86_64 from TCC platforms check-in: 959c3bf228 user: rkeene tags: trunk | |
| 13:52 | Updated TCC to build only on ix86/x86_64 platforms Fixed bugs in TCC 0.4 with patches and build.sh updates check-in: 3e4cf5d7be user: rkeene tags: trunk | |
| 12:27 | Added "tcc" package check-in: 5f6fa113cf user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/common.sh from [ad199373ac] to [d35eb59bb1].
| ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 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 | + + + + + + + + + + + + + + |
local platform
for platform in "$@"; do
if [ "${PLATFORM}" = "${platform}" ]; then
return 0
fi
done
rm -rf out
exit 0
}
function only_platforms_regexp () {
local platform_re
for platform_re in "$@"; do
if echo "${PLATFORM}" | grep -- "${platform_re}" >/dev/null; then
return 0
fi
done
rm -rf out
exit 0
}
function download () {
|
| ︙ |
Modified server/buildpkgs/tcc/build.sh from [11bc7d10bb] to [49725eb0a2].
| ︙ | |||
9 10 11 12 13 14 15 16 17 18 | 9 10 11 12 13 14 15 16 17 18 19 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 | + + + - + - + + + + + + + + + + + + + + | # Load common functions source ../common.sh # Do not build if the "tcl" platform has been requested not_platforms 'tcl' # Only build for the following platforms only_platforms_regexp '-ix86$' '-x86_64$' # Download source download_src |
| ︙ |
Added server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixinstall.diff version [ae3d7455ab].
|
Added server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixvers.diff version [7362076e82].