We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660365e commit 0f08267Copy full SHA for 0f08267
unix/Makefile
@@ -2,7 +2,7 @@ PYSRC=../py
2
BUILD=build
3
4
CC = gcc
5
-CFLAGS = -I. -I$(PYSRC) -Wall -ansi -std=gnu99 -Os #-DNDEBUG
+CFLAGS = -I. -I$(PYSRC) -Wall -Werror -ansi -std=gnu99 -Os #-DNDEBUG
6
LDFLAGS = -lm
7
8
SRC_C = \
@@ -29,6 +29,9 @@ PY_O = \
29
emitnthumb.o \
30
emitinlinethumb.o \
31
runtime.o \
32
+ map.o \
33
+ obj.o \
34
+ builtin.o \
35
vm.o \
36
showbc.o \
37
repl.o \
unix/main.c
@@ -10,6 +10,7 @@
10
#include "parse.h"
11
#include "compile.h"
12
#include "runtime.h"
13
+#include "obj.h"
14
#include "repl.h"
15
16
#include <readline/readline.h>
0 commit comments