Differences From Artifact [a32606647f]:
- File tcl/patchscripts/static-kitdll-noextern.sh — part of check-in [39588a62db] at 2016-03-20 07:35:09 on branch trunk — Updated to not mark anything as external if we are building a static KitDLL (user: rkeene, size: 356) [annotate] [blame] [check-ins using] [more...]
To Artifact [2fde7eb327]:
- File tcl/patchscripts/noextern.sh — part of check-in [ec1baaf189] at 2019-06-19 18:39:50 on branch trunk — Renamed noextern script to be more appropriate (user: rkeene, size: 150) [annotate] [blame] [check-ins using]
- File tcl/patchscripts/static-kitdll-noextern.sh — part of check-in [5dfcc7bdbd] at 2019-06-19 18:35:30 on branch trunk — Disable EXTERN always since we always link directly to libtcl or through its stubs table (user: rkeene, size: 150) [annotate] [blame] [check-ins using]
1 1 #! /bin/bash 2 2 3 -if [ "${KITTARGET}" != "kitdll" ]; then 4 - exit 0 5 -fi 6 - 7 -if [ "${KITCREATOR_STATIC_KITDLL}" != '1' ]; then 8 - exit 0 9 -fi 10 - 11 -# For a static KitDLL we are linking directly to the object 12 -# so there is nothing external. 13 3 sed 's/define EXTERN .*/define EXTERN/' generic/tcl.h > generic/tcl.h.new 14 4 cat generic/tcl.h.new > generic/tcl.h 15 5 rm -f generic/tcl.h.new