2013-10-12 14:30:21 +01:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2013-10-16 23:58:48 +01:00
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2013-10-12 16:53:13 +01:00
|
|
|
#define MICROPY_EMIT_THUMB (0)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (0)
|
2014-04-02 18:57:19 +01:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-04-05 20:35:48 +01:00
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2014-01-07 14:54:15 +00:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-01-19 11:48:48 +00:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2014-01-07 14:54:15 +00:00
|
|
|
#define MICROPY_ENABLE_REPL_HELPERS (1)
|
2014-01-07 15:20:33 +00:00
|
|
|
#define MICROPY_ENABLE_LEXER_UNIX (1)
|
2014-01-29 21:51:51 +00:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2014-04-13 18:59:45 +01:00
|
|
|
#define MICROPY_ENABLE_PROPERTY (1)
|
2014-03-08 15:24:39 +00:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
2014-02-22 19:25:23 +00:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-02-06 21:11:19 +00:00
|
|
|
#define MICROPY_PATH_MAX (PATH_MAX)
|
2014-04-13 05:00:37 +01:00
|
|
|
#define MICROPY_MOD_SYS_STDFILES (1)
|
2013-10-12 14:30:21 +01:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-12-30 01:38:32 +00:00
|
|
|
#ifdef __LP64__
|
|
|
|
typedef long machine_int_t; // must be pointer size
|
|
|
|
typedef unsigned long machine_uint_t; // must be pointer size
|
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless for actual size.
|
|
|
|
typedef int machine_int_t; // must be pointer size
|
|
|
|
typedef unsigned int machine_uint_t; // must be pointer size
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BYTES_PER_WORD sizeof(machine_int_t)
|
2013-10-22 16:05:47 +01:00
|
|
|
|
2013-10-12 14:30:21 +01:00
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 18:17:45 +00:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2014-02-14 10:02:34 +00:00
|
|
|
|
|
|
|
extern const struct _mp_obj_fun_native_t mp_builtin_open_obj;
|
|
|
|
#define MICROPY_EXTRA_BUILTINS \
|
2014-04-05 22:36:42 +01:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|