8000 unix: include obj.h, and build additional py files. · hellcoderz/micropython@0f08267 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 0f08267

Browse files
committed
unix: include obj.h, and build additional py files.
1 parent 660365e commit 0f08267

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

unix/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PYSRC=../py
22
BUILD=build
33

44
CC 8000 = gcc
5-
CFLAGS = -I. -I$(PYSRC) -Wall -ansi -std=gnu99 -Os #-DNDEBUG
5+
CFLAGS = -I. -I$(PYSRC) -Wall -Werror -ansi -std=gnu99 -Os #-DNDEBUG
66
LDFLAGS = -lm
77

88
SRC_C = \
@@ -29,6 +29,9 @@ PY_O = \
2929
emitnthumb.o \
3030
emitinlinethumb.o \
3131
runtime.o \
32+
map.o \
33+
obj.o \
34+
builtin.o \
3235
vm.o \
3336
showbc.o \
3437
repl.o \

unix/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "parse.h"
1111
#include "compile.h"
1212
#include "runtime.h"
13+
#include "obj.h"
1314
#include "repl.h"
1415

1516
#include <readline/readline.h>

0 commit comments

Comments
 (0)
0