Skip to content

Commit 0c6ec26

Browse files
committed
fix#18 final fix
1 parent 792130a commit 0c6ec26

File tree

11 files changed

+243
-440
lines changed

11 files changed

+243
-440
lines changed

minic

54.7 KB
Binary file not shown.

setup.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if ! [ -d "$ucode"]; then
3737
fi
3838

3939
cd ucode
40-
g++ -c ucodei.cpp
40+
g++ -c ucodei.cpp -w
4141
g++ -o ucodei ucodei.o
4242
mv ucodei ../..
4343
rm -rf ucodei.o

src/icg/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ YACC = bison
55

66
all : minic
77

8-
minic: lex.yy.c minic.tab.c parser.c icg.c
9-
$(CC) -o $@ $^ $(LIBS)
8+
minic: lex.yy.c minic.tab.c parser.c icg.c table.c
9+
$(CC) -o $@ $^ $(LIBS) -w
1010

1111
minic.tab.c: minic.y
1212
$(YACC) -d $^

0 commit comments

Comments
 (0)