Overview
| Comment: | Updated to latest tcc4tcl and request no dlopen() symbol from TCC unless we likely will not have one |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
cd75207dd162fe04833a0d6334a6159c |
| User & Date: | rkeene on 2014-05-22 05:14:23 |
| Other Links: | manifest | tags |
Context
|
2014-05-22
| ||
| 05:53 | Updated static build script to use MUSL instead of dietlibc since MUSL is more complete check-in: df5e53167e user: rkeene tags: trunk | |
| 05:14 | Updated to latest tcc4tcl and request no dlopen() symbol from TCC unless we likely will not have one check-in: cd75207dd1 user: rkeene tags: trunk | |
|
2014-05-21
| ||
| 03:57 | Updated to build Linux test as RHEL5 as well as allow user to specify individual targets check-in: 823074a385 user: rkeene tags: trunk | |
Changes
Modified tcc4tcl/build.sh from [59f44c8b6b] to [1869601c95].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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
|
| ︙ | |||
73 74 75 76 77 78 79 80 81 82 83 84 85 86 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | + + + + + + |
elif [ "${STATICTCC4TCL}" = "-1" ]; then
# Require shared object if requested
tryopts="--enable-shared"
else
# Default to building statically
tryopts="--disable-shared"
fi
if echo " ${CONFIGUREEXTRA} " | grep ' --disable-load ' >/dev/null; then
dlopen_flag="--with-dlopen"
else
dlopen_flag="--without-dlopen"
fi
SAVE_CFLAGS="${CFLAGS}"
for tryopt in $tryopts __fail__; do
# Clean up, if needed
make distclean >/dev/null 2>/dev/null
rm -rf "${INSTDIR}"
mkdir "${INSTDIR}"
|
| ︙ | |||
100 101 102 103 104 105 106 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | - - + + |
if [ "${isshared}" = "0" -a "${KITTARGET}" = "kitdll" ]; then
CFLAGS="${SAVE_CFLAGS} -fPIC"
else
CFLAGS="${SAVE_CFLAGS}"
fi
(
|
| ︙ |