Check-in [4ab0657dfa]
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
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/bash

set -x

function find_syms() {
	set -x

	${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
		echo "    TCCSYM($sym)"
	done
}

add="$(find_syms)"



<
<

<
<







1
2


3


4
5
6
7
8
9
10
#! /bin/bash



function find_syms() {


	${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
		echo "    TCCSYM($sym)"
	done
}

add="$(find_syms)"