Overview
Comment: | Updated to build Tcc naively |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a319c993d903aaf56c78dfaeb1874655 |
User & Date: | rkeene on 2014-05-01 23:32:44 |
Other Links: | manifest | tags |
Context
2014-05-01
| ||
23:35 | Corrected call to tcc configure check-in: 013ffc32d5 user: rkeene tags: trunk | |
23:32 | Updated to build Tcc naively check-in: a319c993d9 user: rkeene tags: trunk | |
23:13 | Updated to download TCC check-in: 2631d4cf7d user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [0567345519] to [87dfad392f].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | - + + + + + + + + + + + + - + - + - - - + + + + + + + | CC = @CC@ AR = @AR@ RANLIB = @RANLIB@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ |
︙ |
Modified tcltcc.c from [f5d4fd88e2] to [07a867c26b].
︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | + + + | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <tcl.h> #include "tcc.h" static void TccErrorFunc(Tcl_Interp * interp, char * msg) { Tcl_AppendResult(interp, msg, "\n", NULL); } static void TccCCommandDeleteProc (ClientData cdata) { |
︙ |