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} || exit 1
${MAKE:-make} 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
|
|
|
|
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
|