diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-22 00:44:22 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-22 00:44:41 +0200 |
commit | c3280d83e70b531193b1577f0160559d607d922e (patch) | |
tree | e78b3414b578635d41659dcffbfc60a682c096c4 /unix/mpconfigport.h | |
parent | ede1f547e72c89125b78d3fb1cf5dd7d9c68ec92 (diff) | |
download | micropython-c3280d83e70b531193b1577f0160559d607d922e.tar.gz micropython-c3280d83e70b531193b1577f0160559d607d922e.zip |
unix: Use printf() implementation in terms of mp_printf().
In other words, unix port now uses overriden printf(), instead of using
libc's. This should remove almost all dependency on libc stdio (which
is bloated).
Diffstat (limited to 'unix/mpconfigport.h')
-rw-r--r-- | unix/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 3d666d0221..8ff4e096d0 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -50,6 +50,7 @@ #define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1) #define MICROPY_MEM_STATS (1) #define MICROPY_DEBUG_PRINTERS (1) +#define MICROPY_DEBUG_STDERR (1) #define MICROPY_USE_READLINE_HISTORY (1) #define MICROPY_HELPER_REPL (1) #define MICROPY_REPL_EMACS_KEYS (1) |