Overview
| Comment: | Corrected tcc4tcl package build location |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
dc0f72598a02f61dcfbb592d5f6fcc80 |
| User & Date: | rkeene on 2014-05-17 04:16:37 |
| Other Links: | manifest | tags |
Context
|
2014-05-17
| ||
| 05:02 | Upgraded to latest tcc4tcl check-in: af990400b1 user: rkeene tags: trunk | |
| 04:16 | Corrected tcc4tcl package build location check-in: dc0f72598a user: rkeene tags: trunk | |
| 03:30 | Minor fix of description check-in: 50d6e30f04 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/tcc4tcl/build.sh from [5f9334e71c] to [6054451b6c].
| ︙ | ︙ | |||
39 40 41 42 43 44 45 |
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}
| | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
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} PACKAGE_INSTALL_DIR="${PLATDIR}" || exit 1
${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" install || exit 1
) || exit 1
# Create metadata
../create_teapot "${PLATDIR}/teapot.txt" "tcc4tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "tcc4tcl provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter."
exit 0
|