Overview
Comment: | Removed debugging |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 4ab0657dfa2e9ee547799a0bc0d4c8741176e57a |
User & Date: | rkeene on 2014-04-28 21:20:39 |
Other Links: | manifest | tags |
Context
2014-04-29
| ||
11:46 | Updated to fail to build TCC on unsupported platforms check-in: 9ec7dcbb26 user: rkeene tags: trunk | |
2014-04-28
| ||
21:20 | Removed debugging check-in: 4ab0657dfa user: rkeene tags: trunk | |
20:38 | Updated with additional ignore check-in: fd007c0fd0 user: rkeene tags: trunk | |
Changes
Modified tcc/patchscripts/tcltcc-0.4-addtclfuncs.sh from [b66c99e82c] to [f0194cd9c1].
1 1 #! /bin/bash 2 2 3 -set -x 4 - 5 3 function find_syms() { 6 - set -x 7 - 8 4 ${CC:-gcc} ${CPPFLAGS} -E include/tcl.h | grep '^ *extern.*Tcl_'| sed 's@^ *extern *@@;s@([^(]*$@@;s@.* *\** *@@' | sort -u | grep '^Tcl_' | grep -v ';$' | while read -r sym; do 9 5 echo " TCCSYM($sym)" 10 6 done 11 7 } 12 8 13 9 add="$(find_syms)" 14 10