diff options
| author | Damien <damien.p.george@gmail.com> | 2013-10-12 16:53:13 +0100 |
|---|---|---|
| committer | Damien <damien.p.george@gmail.com> | 2013-10-12 16:53:13 +0100 |
| commit | 3ef4abb446dfcbdbc426a0921a33e0883607e677 (patch) | |
| tree | d8eed3024110a108de0f22aca783fa471e3c7137 /unix/mpyconfig.h | |
| parent | 0efb3a1b66278f31da3e36223bc1429ab5fa7e2c (diff) | |
Change ifdef/if defined to simple if's.
Diffstat (limited to 'unix/mpyconfig.h')
| -rw-r--r-- | unix/mpyconfig.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/mpyconfig.h b/unix/mpyconfig.h index 117892b3d..d9e03f7a8 100644 --- a/unix/mpyconfig.h +++ b/unix/mpyconfig.h @@ -1,10 +1,10 @@ // options to control how Micro Python is built -//#define MICROPY_ENABLE_FLOAT -#define MICROPY_EMIT_ENABLE_CPYTHON -#define MICROPY_EMIT_ENABLE_X64 -//#define MICROPY_EMIT_ENABLE_THUMB -#define MICROPY_EMIT_ENABLE_INLINE_THUMB +#define MICROPY_ENABLE_FLOAT (1) +#define MICROPY_EMIT_CPYTHON (1) +#define MICROPY_EMIT_X64 (0) +#define MICROPY_EMIT_THUMB (0) +#define MICROPY_EMIT_INLINE_THUMB (0) // type definitions for the specific machine |
