Artifact 5b519e7aaed3276410764bad9720b1a445fb5f87:
- Executable file build-static.sh — part of check-in [5d8baf9914] at 2014-10-24 20:13:54 on branch trunk — Completed rename (user: rkeene, size: 491) [annotate] [blame] [check-ins using]
#! /bin/bash # Perform common build options . build-common.sh # Define variables KITCREATORROOT="$(readlink -f '..')" # Compile using the same options as Tcl TCLCONFIGSH='/usr/lib64/tclConfig.sh' . "${TCLCONFIGSH}" echo "${TCL_CC} ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -o tuapi.o -c tuapi.c" eval ${TCL_CC} ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -o tuapi.o -c tuapi.c ar rcu libtuapi.a tuapi.o ranlib libtuapi.a echo 'package ifneeded tuapi '"${tuapi_version}"' [list load {} tuapi]' > pkgIndex.tcl