Updated 2015-03-19 09:24:56 by dbohdan

tcc4tcl (Tiny C Compiler for Tcl) is a Tcl extension that provides an interface to TCC.

It is a fork of tcltcc by Mark Janssen.

It is licensed under the terms of the LGPL v2.1 (or later).

Homepage: http://chiselapp.com/user/rkeene/repository/tcc4tcl/index

dbohdan 2015-03-16: As of version 0.23 you can compile tcc4tcl on Linux thus:
#!/bin/sh
set -e
version=0.23
release="tcc4tcl-$version"
url="http://rkeene.org/devel/tcc4tcl/${release}.tar.gz"
curl "$url" -o "${release}.tar.gz" # -O may not be unavailable.
tar zxvf "$release.tar.gz"
cd $release
./configure
make

AMG: When I try the above procedure, @PACKAGE_VERSION@ in the *.in files is converted to @@VERS@@. This token appears in configure.ac and tcc4tcl.tcl. Is it supposed to be replaced with something else? What is responsible for doing that?

dbohdan: The procedure was wrong. Try it again with the updated script.

dbohdan: Updated the script once more to hammer Roy Keene's server less.