Artifact 8d87567e4991d13d96b094c63e2b332daa858dd5:
- Executable file build-static.sh — part of check-in [cc9b79793c] at 2014-10-24 20:12:14 on branch trunk — First half of renaming (user: rkeene, size: 493) [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 system.c" eval ${TCL_CC} ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -o tuapi.o -c system.c ar rcu libtuapi.a tuapi.o ranlib libtuapi.a echo 'package ifneeded tuapi '"${tuapi_version}"' [list load {} tuapi]' > pkgIndex.tcl