diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-07 15:20:33 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-07 15:20:33 +0000 |
commit | d3ebe4829d920542e5af462e75179e4f0cadb946 (patch) | |
tree | 98b13b97030af834ef0a18114007edc43d442acf /unix-cpy/mpconfigport.h | |
parent | 136f67523b10d24dd65cb25e49e07a7e4e5341a1 (diff) | |
download | micropython-d3ebe4829d920542e5af462e75179e4f0cadb946.tar.gz micropython-d3ebe4829d920542e5af462e75179e4f0cadb946.zip |
Factor and simplify Makefile's and mpconfig, part 2.
Diffstat (limited to 'unix-cpy/mpconfigport.h')
-rw-r--r-- | unix-cpy/mpconfigport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix-cpy/mpconfigport.h b/unix-cpy/mpconfigport.h index 9e3e32bb44..3fc1866772 100644 --- a/unix-cpy/mpconfigport.h +++ b/unix-cpy/mpconfigport.h @@ -1,7 +1,8 @@ // options to control how Micro Python is built -#define MICROPY_ENABLE_FLOAT (1) #define MICROPY_EMIT_CPYTHON (1) +#define MICROPY_ENABLE_LEXER_UNIX (1) +#define MICROPY_ENABLE_FLOAT (1) // type definitions for the specific machine |