py/mpconfig.h: Allow to build without alloca() for ANSI C compliance.

Define MICROPY_NO_ALLOCA=1 and memory will be allocated from heap instead
and freed by garbage collection.
pull/1643/merge
Paul Sokolovsky 2015-11-25 23:22:31 +02:00
rodzic f0fbab7ca7
commit f32020ef3d
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -189,6 +189,16 @@
#define MICROPY_STACKLESS_STRICT (0)
#endif
// Don't use alloca calls. As alloca() is not part of ANSI C, this
// workaround option is provided for compilers lacking this de-facto
// standard function. The way it works is allocating from heap, and
// relying on garbage collection to free it eventually. This is of
// course much less optimal than real alloca().
#if defined(MICROPY_NO_ALLOCA) && MICROPY_NO_ALLOCA
#undef alloca
#define alloca(x) m_malloc(x)
#endif
/*****************************************************************************/
/* Micro Python emitters */