Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
83d27b0f
Commit
83d27b0f
authored
Dec 14, 2014
by
Paul Sokolovsky
Browse files
unix: Enable Thumb2 and ARM emitters by default on corresponding archs.
parent
138562cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix/mpconfigport.h
View file @
83d27b0f
...
...
@@ -33,6 +33,12 @@
#if !defined(MICROPY_EMIT_X86) && defined(__i386__)
#define MICROPY_EMIT_X86 (1)
#endif
#if !defined(MICROPY_EMIT_THUMB) && defined(__thumb2__)
#define MICROPY_EMIT_THUMB (1)
#endif
#if !defined(MICROPY_EMIT_ARM) && defined(__arm__)
#define MICROPY_EMIT_ARM (1)
#endif
#define MICROPY_ENABLE_GC (1)
#define MICROPY_ENABLE_FINALISER (1)
#define MICROPY_MEM_STATS (1)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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