Overview
| Comment: | Fixed linking order |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
da57283f3eaf42b4f7d5efe63c059591 |
| User & Date: | rkeene on 2014-10-29 15:52:17.848 |
| Other Links: | manifest | tags |
Context
|
2014-10-29
| ||
| 16:07 | Added working modprobe check-in: 3b9488fc72 user: rkeene tags: trunk | |
| 15:52 | Fixed linking order check-in: da57283f3e user: rkeene tags: trunk | |
| 15:48 | Updated to source correct file even if "." is not in the path check-in: a741d40026 user: rkeene tags: trunk | |
Changes
Modified build-dyn.sh
from [2e83d40285]
to [58689ba4b3].
1 2 3 4 5 6 7 8 9 10 11 12 |
# /bin/bash
# Perform common build options
. ./build-common.sh
# Compile using the same options as Tcl
if [ -z "${TCLCONFIGSH}" ]; then
TCLCONFIGSH="$(find /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64 /lib /lib64 -name tclConfig.sh -print -quit)"
fi
. "${TCLCONFIGSH}"
| | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# /bin/bash
# Perform common build options
. ./build-common.sh
# Compile using the same options as Tcl
if [ -z "${TCLCONFIGSH}" ]; then
TCLCONFIGSH="$(find /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64 /lib /lib64 -name tclConfig.sh -print -quit)"
fi
. "${TCLCONFIGSH}"
echo "${TCL_CC} -ggdb3 -fPIC -DPIC -Wall -DUSE_TCL_STUBS=1 ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -shared -rdynamic -o tuapi.so tuapi.c ${TCL_STUB_LIB_SPEC}"
eval ${TCL_CC} -ggdb3 -fPIC -DPIC -Wall -DUSE_TCL_STUBS=1 ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -shared -rdynamic -o tuapi.so tuapi.c ${TCL_STUB_LIB_SPEC}
echo 'package ifneeded tuapi '"${tuapi_version}"' [list load [file join $dir tuapi.so]]' > pkgIndex.tcl
|