Overview
Comment: | Updated to default to building and linking shared |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b9a743000745c20afaa7fbd3dec4b190 |
User & Date: | rkeene on 2014-06-23 02:20:04 |
Other Links: | manifest | tags |
Context
2014-06-23
| ||
02:27 | Updated to include prototype for function that initializes Tcl procedures if they are used check-in: f67ebac03e user: rkeene tags: trunk | |
02:20 | Updated to default to building and linking shared check-in: b9a7430007 user: rkeene tags: trunk | |
01:51 | Updated to not error out about not being able to load the library until we actually need to use it check-in: 0e71626442 user: rkeene tags: trunk | |
Changes
Added build/tcc-patches/0.9.26/tcc-0.9.26-defaultshared.diff version [fcce12419e].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | diff -uNr tcc-0.9.26.orig/libtcc.c tcc-0.9.26-1defaultshared/libtcc.c --- tcc-0.9.26.orig/libtcc.c 2013-02-15 08:24:00.000000000 -0600 +++ tcc-0.9.26-1defaultshared/libtcc.c 2014-06-22 21:19:12.879507000 -0500 @@ -908,6 +908,7 @@ s->output_type = TCC_OUTPUT_MEMORY; preprocess_new(); s->include_stack_ptr = s->include_stack; + s->static_link = 0; /* we add dummy defines for some special macros to speed up tests and to have working defined() */ |