Differences From Artifact [aa505b066c]:
- File tcc4tcl.c — part of check-in [9e75cf906d] at 2014-05-04 04:26:45 on branch trunk — Updated to set tcc_lib_path sooner, needed for setting library_paths correctly (user: rkeene, size: 9094) [annotate] [blame] [check-ins using] [more...]
To Artifact [57a80f23fd]:
- File tcc4tcl.c — part of check-in [cbac5b0590] at 2014-05-05 21:12:08 on branch trunk — Reverted [75e4d5fbed] and updated to do integration work in our driver directly (user: rkeene, size: 9217) [annotate] [blame] [check-ins using]
︙ | |||
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; |
︙ |