Subject | Hash | Author | Date (UTC) |
---|---|---|---|
A makefile for cygwin. | 7114936321546139b5512821e3d868b21c0b89f1 | cilibrar | 2003-06-08 10:38:31 |
Added \n, \r, \t in double-quotes. Added debug keyword handling. Now it parses everything in the Scripts directory except demo.ai, which looks like it could never work anyway. | a76d8de5a85768c58297ad05dcc3bd361e3c8d69 | cilibrar | 2003-06-08 10:12:17 |
Make downcasting bug a bit more restrictive to minimize future problems. | 3bef4ca2d62e1de3fe70986de71a3da2b68ff25f | cilibrar | 2003-06-08 09:52:03 |
Fixed segfault involving undeclared variables by assuming they are integer. | 76b34be901540214c21b8af681bcf42620ca0e21 | cilibrar | 2003-06-08 09:49:56 |
Fixed bug with string literal addition. Added unfortunate special case to canconvert to allow downcasts from base to derived. Waiting on Blizzard to fix this one. (such a cast appears in one place in Blizzard.j) | 1384b0771dd6db4c6cb548fef3331f518509c68e | cilibrar | 2003-06-08 09:40:28 |
Allow null to be converted to code, string, and appropriate comparisons. | a2a05f7938a46a6a873d0f3313af760900403c88 | cilibrar | 2003-06-08 07:50:23 |
lets begin | edb29fca55a82526251fd7c671302425ed97d9bd | cilibrar | 2003-06-08 07:47:56 |
File | Lines added | Lines deleted |
---|---|---|
src/Makefile | 1 | 1 |
src/Makefile.cygwin | 1 | 1 |
File src/Makefile changed (mode: 100644) (index 53f2d17..5cf76b6) | |||
1 | 1 | all: sc | all: sc |
2 | 2 | ||
3 | 3 | sc: lex.yy.c grammar.tab.c grammar.tab.h misc.o | sc: lex.yy.c grammar.tab.c grammar.tab.h misc.o |
4 | gcc lex.yy.c grammar.tab.c misc.o -lfl -o $@ -g | ||
4 | gcc lex.yy.c grammar.tab.c misc.c -lfl -o $@ -g | ||
5 | 5 | ||
6 | 6 | lex.yy.c: token.l | lex.yy.c: token.l |
7 | 7 | flex $< | flex $< |
File src/Makefile.cygwin copied from file src/Makefile (similarity 85%) (mode: 100644) (index 53f2d17..b4fee23) | |||
1 | 1 | all: sc | all: sc |
2 | 2 | ||
3 | 3 | sc: lex.yy.c grammar.tab.c grammar.tab.h misc.o | sc: lex.yy.c grammar.tab.c grammar.tab.h misc.o |
4 | gcc lex.yy.c grammar.tab.c misc.o -lfl -o $@ -g | ||
4 | gcc lex.yy.c grammar.tab.c misc.c -lfl -o $@ -g -mno-cygwin | ||
5 | 5 | ||
6 | 6 | lex.yy.c: token.l | lex.yy.c: token.l |
7 | 7 | flex $< | flex $< |