2013-10-12 09:30:21 -04:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2013-10-16 18:58:48 -04:00
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2013-10-12 11:53:13 -04:00
|
|
|
#define MICROPY_EMIT_THUMB (0)
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (0)
|
2014-04-02 13:57:19 -04:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-04-05 15:35:48 -04:00
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2014-01-07 09:54:15 -05:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-01-19 06:48:48 -05:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2014-01-07 09:54:15 -05:00
|
|
|
#define MICROPY_ENABLE_REPL_HELPERS (1)
|
2014-01-07 10:20:33 -05:00
|
|
|
#define MICROPY_ENABLE_LEXER_UNIX (1)
|
2014-01-29 16:51:51 -05:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2014-03-08 10:24:39 -05:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
2014-02-22 14:25:23 -05:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-02-06 16:11:19 -05:00
|
|
|
#define MICROPY_PATH_MAX (PATH_MAX)
|
2013-10-12 09:30:21 -04:00
|
|
|
|
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-12-29 20:38:32 -05: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 11:05:47 -04:00
|
|
|
|
2013-10-12 09:30:21 -04:00
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 13:17:45 -05:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2014-02-14 05:02:34 -05:00
|
|
|
|
|
|
|
extern const struct _mp_obj_fun_native_t mp_builtin_open_obj;
|
|
|
|
#define MICROPY_EXTRA_BUILTINS \
|
2014-04-05 17:36:42 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|