Overview
| Comment: | Upgraded to tcc4tcl 0.14 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8b2ac4d64ef4f5f2cdf7cb11e24551cb |
| User & Date: | rkeene on 2014-05-22 17:02:36 |
| Other Links: | manifest | tags |
Context
|
2014-05-27
| ||
| 13:44 | Updated to create a fake "xmkmf" when cross-compiling check-in: 2539bf269d user: rkeene tags: trunk | |
|
2014-05-22
| ||
| 17:02 | Upgraded to tcc4tcl 0.14 check-in: 8b2ac4d64e user: rkeene tags: trunk | |
| 05:53 | Updated static build script to use MUSL instead of dietlibc since MUSL is more complete check-in: df5e53167e user: rkeene tags: trunk | |
Changes
Modified tcc4tcl/build.sh from [1869601c95] to [779bc8e67b].
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#! /usr/bin/env bash
if [ ! -f 'build.sh' ]; then
echo 'ERROR: This script must be run from the directory it is in' >&2
exit 1
fi
if [ -z "${TCLVERS}" ]; then
echo 'ERROR: The TCLVERS environment variable is not set' >&2
exit 1
fi
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#! /usr/bin/env bash
if [ ! -f 'build.sh' ]; then
echo 'ERROR: This script must be run from the directory it is in' >&2
exit 1
fi
if [ -z "${TCLVERS}" ]; then
echo 'ERROR: The TCLVERS environment variable is not set' >&2
exit 1
fi
TCC4TCLVERS="0.14"
SRC="src/tcc4tcl-${TCC4TCLVERS}.tar.gz"
SRCURL="http://rkeene.org/devel/tcc4tcl/tcc4tcl-${TCC4TCLVERS}.tar.gz"
BUILDDIR="$(pwd)/build/tcc4tcl-${TCC4TCLVERS}"
OUTDIR="$(pwd)/out"
INSTDIR="$(pwd)/inst"
PATCHDIR="$(pwd)/patches"
export TCC4TCLVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR PATCHDIR
|
| ︙ | ︙ |