Overview
Comment: | Reverted [75e4d5fbed] and updated to do integration work in our driver directly |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cbac5b0590e4f3851e4e3f3eccbbae4e |
User & Date: | rkeene on 2014-05-05 21:12:08 |
Other Links: | manifest | tags |
Context
2014-05-05
| ||
21:38 | Cleanup configure and also weaken static library symbols check-in: bab5762df8 user: rkeene tags: trunk | |
21:12 | Reverted [75e4d5fbed] and updated to do integration work in our driver directly check-in: cbac5b0590 user: rkeene tags: trunk | |
20:48 | Updated to be quieter during installation of header files check-in: 2e16cde0c4 user: rkeene tags: trunk | |
Changes
Modified build/tcc-patches/0.9.26/tcc-0.9.26-tcl.diff from [f74bb07351] to [e03734effa].
| 1 2 3 4 5 6 7 8 9 | - - - + + |
|
︙ | |||
48 49 50 51 52 53 54 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - | + fi + done +fi + cat <<EOF Binary directory $bindir TinyCC directory $tccdir |
Modified tcc4tcl.c from [aa505b066c] to [57a80f23fd].
︙ | |||
252 253 254 255 256 257 258 259 260 261 262 263 264 265 | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | + + + + + | } } s = tcc_new(Tcl_GetString(objv[1])); if (s == NULL) { return(TCL_ERROR); } #ifdef USE_TCL_STUBS tcc_add_symbol(s, "tclStubsPtr", &tclStubsPtr); tcc_define_symbol(s, "USE_TCL_STUBS", "1"); #endif tcc_set_error_func(s, interp, (void *)&Tcc4tclErrorFunc); ts = (void *) ckalloc(sizeof(*ts)); ts->s = s; ts->relocated = 0; |
︙ |