circuitpython/ports/embed/port
SiZiOUS f67a370311 embed/port: Fix alloca include for Windows platforms.
When building the embedded port on MinGW-w64, I receive the following
error:

    fatal error: alloca.h: No such file or directory

MinGW-w64 (used on MSYS2) doesn't include `alloca.h`, but `alloca()` is
provided via `malloc.h` instead.  And this fix is also needed for other
Windows build systems.

Signed-off-by: SiZiOUS <sizious@gmail.com>
2025-08-01 12:01:37 +10:00
..
embed_util.c py/emitglue: Introduce mp_proto_fun_t as a more general mp_raw_code_t. 2024-02-16 14:17:01 +11:00
micropython_embed.h embed: Improve stack top estimation. 2024-02-15 10:07:32 +11:00
mpconfigport_common.h embed/port: Fix alloca include for Windows platforms. 2025-08-01 12:01:37 +10:00
mphalport.c embed: Add new "embed" port which builds a simple C package. 2023-01-20 22:28:50 +11:00
mphalport.h embed: Add new "embed" port which builds a simple C package. 2023-01-20 22:28:50 +11:00