Check-in [08662daa7c]
Overview
Comment:Added start of initial patches to TCC needed for integration with Tcl
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 08662daa7c360c3e188d4bfb06a57658e4ed850a
User & Date: rkeene on 2014-05-02 00:54:04.811
Other Links: manifest | tags
Context
2014-05-02
01:17
More work towards supporting Tcl I/O from TCC check-in: eebb3855d6 user: rkeene tags: trunk
00:54
Added start of initial patches to TCC needed for integration with Tcl check-in: 08662daa7c user: rkeene tags: trunk
2014-05-01
23:50
Wrapping some Tcl-specific changes to TCC into TclTCC check-in: d6a2d38950 user: rkeene tags: trunk
Changes
26
27
28
29
30
31
32





33
34
35
36
37
38
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43







+
+
+
+
+






	fi

	mv new "tcc-${tcc_version}.tar.bz2"

	bzip2 -dc "tcc-${tcc_version}.tar.bz2" | tar -xf -

	rm -f "tcc-${tcc_version}.tar.bz2"

	## Apply patches
	for patchfile in ../build/tcc-patches/${tcc_version}/*.diff; do
		( cd * && patch -p1 ) < "${patchfile}"
	done

	rm -rf ../tcc
	mkdir ../tcc || exit 1
	mv */* ../tcc/
)
rm -rf __TMP__