Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
4ef4ffe1
Commit
4ef4ffe1
authored
Jan 01, 2015
by
Damien George
Browse files
qemu-arm: Prefix includes with py/; remove need for -I../py.
parent
c2e22d66
Changes
2
Hide whitespace changes
Inline
Side-by-side
qemu-arm/Makefile
View file @
4ef4ffe1
...
...
@@ -11,7 +11,6 @@ CROSS_COMPILE = arm-none-eabi-
INC
=
-I
.
INC
+=
-I
..
INC
+=
-I
$(PY_SRC)
INC
+=
-I
$(BUILD)
CFLAGS_CORTEX_M3
=
-mthumb
-mcpu
=
cortex-m3
...
...
qemu-arm/main.c
View file @
4ef4ffe1
...
...
@@ -2,19 +2,14 @@
#include
<stdio.h>
#include
<string.h>
#include
"mpconfig.h"
#include
"nlr.h"
#include
"misc.h"
#include
"qstr.h"
#include
"lexer.h"
#include
"parse.h"
#include
"obj.h"
#include
"parsehelper.h"
#include
"compile.h"
#include
"runtime0.h"
#include
"runtime.h"
#include
"repl.h"
#include
"pfenv.h"
#include
"py/nlr.h"
#include
"py/obj.h"
#include
"py/parsehelper.h"
#include
"py/compile.h"
#include
"py/runtime0.h"
#include
"py/runtime.h"
#include
"py/repl.h"
#include
"py/pfenv.h"
void
do_str
(
const
char
*
src
)
{
mp_lexer_t
*
lex
=
mp_lexer_new_from_str_len
(
MP_QSTR__lt_stdin_gt_
,
src
,
strlen
(
src
),
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment