Skip to content
Snippets Groups Projects
Commit 83d27b0f authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

unix: Enable Thumb2 and ARM emitters by default on corresponding archs.

parent 138562cc
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment