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: |
326afc96d5d23c659ab7cc9f5c946010 |
| 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 | 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/* | | | | | | | | 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].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixinstall.diff version [ae3d7455ab].
|
| < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted server/buildpkgs/tcc/patches/0.4/tcltcc-0.4-fixvers.diff version [7362076e82].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
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
|