Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Welcome 0.1.1 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | SEED_0_1_1 |
Files: | files | file ages | folders |
SHA1: |
bce924ca1a1bab8a808ec797963f32df |
User & Date: | martin 2013-06-24 03:37:13 |
Context
2013-06-25
| ||
02:40 | Make read return (vector ...) form instead of literal vector; work towards unquote-splicing. check-in: 8537764586 user: martin tags: trunk | |
2013-06-24
| ||
03:37 | Welcome 0.1.1 check-in: bce924ca1a user: martin tags: trunk, SEED_0_1_1 | |
03:33 | Tell GC how to reclaim vectors; use API from types.h in display/memory; rename include to load; (vector ...) works now. check-in: 0e7e776c9c user: martin tags: trunk | |
Changes
Changes to Makefile.
1 2 3 4 5 6 7 | CC=gcc CFLAGS=-Wall -Wextra -pedantic -std=c89 -g -pipe OBJS=display.o env.o eval.o init.o memory.o \ primitives.o read.o seed.o symtab.o types.o | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | CC=gcc CFLAGS=-Wall -Wextra -pedantic -std=c89 -g -pipe OBJS=display.o env.o eval.o init.o memory.o \ primitives.o read.o seed.o symtab.o types.o VERSION="0.1.1" BANNER="Seed $(VERSION)" BIN=seed all: repl test $(BIN): $(OBJS) |
︙ | ︙ |