Overview
Comment: | Swapped out "tcltcc" for "tcc4tcl" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 326afc96d5d23c659ab7cc9f5c94601055bb7c5c |
User & Date: | rkeene on 2014-05-06 12:11:45 |
Other Links: | manifest | tags |
Context
2014-05-15
| ||
21:36 | Updated make URL references to directories to include a trailing slash check-in: 15e90ceaa8 user: rkeene tags: trunk | |
2014-05-06
| ||
12:11 | Swapped out "tcltcc" for "tcc4tcl" check-in: 326afc96d5 user: rkeene tags: trunk | |
12:11 | Updated to latest tcllib check-in: 830629525a user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [39c92ef1db] to [c8f4ba4877].
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
server/buildpkgs/platform.magic.*/* server/buildpkgs/sqlite3/build server/buildpkgs/sqlite3/build/* server/buildpkgs/sqlite3/out server/buildpkgs/sqlite3/out/* server/buildpkgs/sqlite3/src server/buildpkgs/sqlite3/src/* server/buildpkgs/tcc/build server/buildpkgs/tcc/build/* server/buildpkgs/tcc/out server/buildpkgs/tcc/out/* server/buildpkgs/tcc/src server/buildpkgs/tcc/src/* server/buildpkgs/tcl server/buildpkgs/tcl/* server/buildpkgs/tcllib/build server/buildpkgs/tcllib/build/* server/buildpkgs/tcllib/out server/buildpkgs/tcllib/out/* server/buildpkgs/tcllib/src |
| | | | | | |
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
server/buildpkgs/platform.magic.*/* server/buildpkgs/sqlite3/build server/buildpkgs/sqlite3/build/* server/buildpkgs/sqlite3/out server/buildpkgs/sqlite3/out/* server/buildpkgs/sqlite3/src server/buildpkgs/sqlite3/src/* server/buildpkgs/tcc4tcl/build server/buildpkgs/tcc4tcl/build/* server/buildpkgs/tcc4tcl/out server/buildpkgs/tcc4tcl/out/* server/buildpkgs/tcc4tcl/src server/buildpkgs/tcc4tcl/src/* server/buildpkgs/tcl server/buildpkgs/tcl/* server/buildpkgs/tcllib/build server/buildpkgs/tcllib/build/* server/buildpkgs/tcllib/out server/buildpkgs/tcllib/out/* server/buildpkgs/tcllib/src |
Deleted server/buildpkgs/tcc/build.sh version [0cb0b2dec3].
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 |
#! /bin/bash # Define parameters VERS=0.4 SRC="src/tcltcc${VERS}.zip" SRCURL="http://tcltcc.googlecode.com/files/tcltcc${VERS}.zip" BUILDDIR="tcltcc-${VERS}" export VERS SRC SRCURL BUILDDIR # 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$' # 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 rm -f "${PLATDIR}"/*.a ) || exit 1 # Create metadata ../create_teapot "${PLATDIR}/teapot.txt" "tcc" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Tcltcc provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter." exit 0 |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted 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__ |
< < < < < < < < < < < < < < < < < < < < < < < < |
Deleted 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 |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Added server/buildpkgs/tcc4tcl/build.sh version [1eec0129af].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 |
#! /bin/bash # Define parameters VERS=0.5 SRC="src/tcc4tcl-${VERS}.tar.gz" SRCURL="http://rkeene.org/devel/tcc4tcl-${VERS}.tar.gz" BUILDDIR="tcc4tcl-${VERS}" export VERS SRC SRCURL BUILDDIR # 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$' # Download source download_src # Extract package ( rm -rf build mkdir build cd build/ || exit 1 gzip -dc "../${SRC}" | tar -xf - ) # 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 bash ./configure --enable-shared --enable-threads --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 ${MAKE:-make} install || exit 1 ) || exit 1 # Create metadata ../create_teapot "${PLATDIR}/teapot.txt" "tcc4tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Tcltcc provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter." exit 0 |