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 | local platform for platform in "$@"; do if [ "${PLATFORM}" = "${platform}" ]; then return 0 fi done rm -rf out exit 0 } function download () { | > > > > > > > > > > > > > > | 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 | # Load common functions source ../common.sh # Do not build if the "tcl" platform has been requested not_platforms 'tcl' # Download source download_src | > > > | < > > > > > > > > > > > > > > | 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 # Extract package ( rm -rf build mkdir build cd build/ || exit 1 mkdir "${BUILDDIR}" cd "${BUILDDIR}" || exit 1 unzip -q "../../${SRC}" ) # Apply patches apply_patches # Build package ( mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null cd "build" || exit 1 cd "${BUILDDIR}" || exit 1 # TCC ships with object files in the way ${MAKE:-make} distclean >/dev/null 2>/dev/null # This file needs to be executable, but it is not by default in 0.4 chmod +x tclconfig/install-sh bash ./configure --enable-shared --enable-threads --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 ${MAKE:-make} install-binaries PKG_DIR='' || exit 1 |
︙ | ︙ |
Added server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixinstall.diff version [ae3d7455ab].
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | diff -uNr tcltcc-0.4.orig/configure tcltcc-0.4-fixinstall/configure --- tcltcc-0.4.orig/configure 2007-11-07 10:12:28.000000000 -0600 +++ tcltcc-0.4-fixinstall/configure 2011-07-25 13:36:53.000000000 -0500 @@ -6649,7 +6649,7 @@ - vars="" + vars="tcc.tcl" for i in $vars; do # check for existence, be strict because it is installed if test ! -f "${srcdir}/$i" ; then diff -uNr tcltcc-0.4.orig/configure.in tcltcc-0.4-fixinstall/configure.in --- tcltcc-0.4.orig/configure.in 2007-11-07 10:05:48.000000000 -0600 +++ tcltcc-0.4-fixinstall/configure.in 2011-07-25 13:36:05.000000000 -0500 @@ -76,7 +76,7 @@ TEA_ADD_LIBS([]) TEA_ADD_CFLAGS([-DLIBTCC -DDLL_EXPORT=""]) TEA_ADD_STUB_SOURCES([]) -TEA_ADD_TCL_SOURCES([]) +TEA_ADD_TCL_SOURCES([tcc.tcl]) #-------------------------------------------------------------------- # __CHANGE__ |
Added server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixvers.diff version [7362076e82].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | diff -uNr tcltcc-0.4.orig/demo/pingpong.test tcltcc-0.4-fixvers/demo/pingpong.test --- tcltcc-0.4.orig/demo/pingpong.test 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/demo/pingpong.test 2011-07-25 13:38:06.000000000 -0500 @@ -5,7 +5,7 @@ set dir [file dirname [info script]]/.. source $dir/pkgIndex.tcl -package require tcc 0.2 +package require tcc 0.4 #-- this code shall in the future be generated by: #-- cfunc tcl_mul {int a int b} int {expr {$a*$b}}} diff -uNr tcltcc-0.4.orig/demo/tcc-compile.tcl tcltcc-0.4-fixvers/demo/tcc-compile.tcl --- tcltcc-0.4.orig/demo/tcc-compile.tcl 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/demo/tcc-compile.tcl 2011-07-25 13:38:17.000000000 -0500 @@ -1,6 +1,6 @@ switch -exact -- $::tcl_platform(platform) { - windows {load ../tcc02.dll} - unix {load ../libtcc0.2.so} + windows {load ../tcc04.dll} + unix {load ../libtcc0.4.so} } tcc .. dll tcc_1 set t tcc_1 @@ -8,7 +8,7 @@ $t add_include_path ../generic/i386 $t add_include_path ../generic $t define PACKAGE_NAME \"tcc\" -$t define PACKAGE_VERSION \"0.2\" +$t define PACKAGE_VERSION \"0.4\" $t define DLL_EXPORT {__declspec(dllexport)} $t define LIBTCC 1 $t define WIN32 1 diff -uNr tcltcc-0.4.orig/demo/tdom-compile-dll.tcl tcltcc-0.4-fixvers/demo/tdom-compile-dll.tcl --- tcltcc-0.4.orig/demo/tdom-compile-dll.tcl 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/demo/tdom-compile-dll.tcl 2011-07-25 13:38:26.000000000 -0500 @@ -1,6 +1,6 @@ switch -exact -- $::tcl_platform(platform) { - windows {load ../tcc02.dll} - unix {load ../libtcc0.2.so} + windows {load ../tcc04.dll} + unix {load ../libtcc0.4.so} } tcc ../pkg dll tcc_1 set t tcc_1 diff -uNr tcltcc-0.4.orig/demo/tdom-compile.tcl tcltcc-0.4-fixvers/demo/tdom-compile.tcl --- tcltcc-0.4.orig/demo/tdom-compile.tcl 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/demo/tdom-compile.tcl 2011-07-25 13:38:32.000000000 -0500 @@ -1,6 +1,6 @@ switch -exact -- $::tcl_platform(platform) { - windows {load ../tcc02.dll} - unix {load ../libtcc0.2.so} + windows {load ../tcc04.dll} + unix {load ../libtcc0.4.so} } tcc ../pkg tcc_1 set t tcc_1 diff -uNr tcltcc-0.4.orig/demo/testtcc.tcl tcltcc-0.4-fixvers/demo/testtcc.tcl --- tcltcc-0.4.orig/demo/testtcc.tcl 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/demo/testtcc.tcl 2011-07-25 13:38:38.000000000 -0500 @@ -1,4 +1,4 @@ -load ../libtcc0.2.so +load ../libtcc0.4.so # second parameter is the path to the tcc libraries tcc ../pkg tcc1 diff -uNr tcltcc-0.4.orig/tcc.tcl tcltcc-0.4-fixvers/tcc.tcl --- tcltcc-0.4.orig/tcc.tcl 2007-11-07 10:04:42.000000000 -0600 +++ tcltcc-0.4-fixvers/tcc.tcl 2011-07-25 13:38:54.000000000 -0500 @@ -10,8 +10,8 @@ set dir [file dirname [info script]] switch -exact -- $::tcl_platform(platform) { - windows { load $dir/tcc02.dll tcc } - unix { load $dir/libtcc0.2.so tcc } + windows { load $dir/tcc04.dll tcc } + unix { load $dir/libtcc0.4.so tcc } default {error "unsupport platform"} } set libs $dir/lib diff -uNr tcltcc-0.4.orig/tests/tcc.test tcltcc-0.4-fixvers/tests/tcc.test --- tcltcc-0.4.orig/tests/tcc.test 2007-11-07 10:04:20.000000000 -0600 +++ tcltcc-0.4-fixvers/tests/tcc.test 2011-07-25 13:38:45.000000000 -0500 @@ -6,8 +6,8 @@ test tcc-1 "load library" { set dir [file dirname [info script]]/.. source $dir/pkgIndex.tcl - package require tcc 0.2 -} 0.2 + package require tcc 0.4 +} 0.4 test tcc-2 "very simple command" { tcc $::tcc::dir tcc1 tcc1 add_library tcl8.5 |