diff --git a/bare-arm/mpconfigport.h b/bare-arm/mpconfigport.h index 73b66802fe25c7e4097840eb74114347389bea65..1587dca57a827d2400dea7a785f026318c23aeb3 100644 --- a/bare-arm/mpconfigport.h +++ b/bare-arm/mpconfigport.h @@ -43,3 +43,5 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj; #define MICROPY_PORT_BUILTINS \ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, +// We need to provide a declaration/definition of alloca() +#include <alloca.h> diff --git a/py/builtinimport.c b/py/builtinimport.c index 795d9fd5e1ace2612bbe01095ce51061df5960fd..44ba4d5541567ca8b121aebf45cd5d35ad1f4b2c 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -29,7 +29,6 @@ #include <stdio.h> #include <string.h> #include <assert.h> -#include <alloca.h> #include "mpconfig.h" #include "nlr.h" diff --git a/py/objfun.c b/py/objfun.c index 5743fa550f895a5cb52b438352e007d5e6defb23..d63acc687b6aa1df35ddf5e0618e8e92b502efee 100644 --- a/py/objfun.c +++ b/py/objfun.c @@ -28,7 +28,6 @@ #include <stdbool.h> #include <string.h> #include <assert.h> -#include <alloca.h> #include "mpconfig.h" #include "nlr.h" diff --git a/py/runtime.c b/py/runtime.c index 179b48d327b4b1b142dc8d9eb32ebe0fd5951bcc..d57bb686d1787058b085d1becd96948f26671242 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -27,7 +27,6 @@ #include <stdio.h> #include <string.h> #include <assert.h> -#include <alloca.h> #include "mpconfig.h" #include "nlr.h" diff --git a/py/vm.c b/py/vm.c index c084d8911458980d79a617aaed1afe3756f686ef..42709889cdd28bd6402e2138a239268ce91073c8 100644 --- a/py/vm.c +++ b/py/vm.c @@ -28,7 +28,6 @@ #include <stdio.h> #include <string.h> #include <assert.h> -#include <alloca.h> #include "mpconfig.h" #include "nlr.h" diff --git a/qemu-arm/mpconfigport.h b/qemu-arm/mpconfigport.h index f464712f501a5a7caddeb4f1cda995ad91259b61..e2c625ce29b743a8ebfc6e42108944b8b530620a 100644 --- a/qemu-arm/mpconfigport.h +++ b/qemu-arm/mpconfigport.h @@ -33,3 +33,5 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj; #define MICROPY_PORT_BUILTINS \ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, +// We need to provide a declaration/definition of alloca() +#include <alloca.h> diff --git a/stmhal/mpconfigport.h b/stmhal/mpconfigport.h index 36a60dfa7cb9a614c03028f4360a7ffdc1518c57..5b99ffca55bf0d256604e1f51a8ff79eff7af60c 100644 --- a/stmhal/mpconfigport.h +++ b/stmhal/mpconfigport.h @@ -99,3 +99,6 @@ typedef const void *machine_const_ptr_t; // must be of pointer size // board specific definitions #include "mpconfigboard.h" + +// We need to provide a declaration/definition of alloca() +#include <alloca.h> diff --git a/unix-cpy/mpconfigport.h b/unix-cpy/mpconfigport.h index 78d197033a5634f050315e2c5028e7c0d5ba104f..a4b5cc0879ebac97a08847a8516a25158111071b 100644 --- a/unix-cpy/mpconfigport.h +++ b/unix-cpy/mpconfigport.h @@ -48,3 +48,10 @@ typedef unsigned int machine_uint_t; // must be pointer size typedef void *machine_ptr_t; // must be of pointer size typedef const void *machine_const_ptr_t; // must be of pointer size typedef double machine_float_t; + +// We need to provide a declaration/definition of alloca() +#ifdef __FreeBSD__ +#include <stdlib.h> +#else +#include <alloca.h> +#endif diff --git a/unix/modsocket.c b/unix/modsocket.c index d6f732377d3a6ecb23fc84e1ba86946afca7b401..b1a34a39b8fcb88b0640e090f3d702e100b81200 100644 --- a/unix/modsocket.c +++ b/unix/modsocket.c @@ -37,7 +37,6 @@ #include <arpa/inet.h> #include <netdb.h> #include <errno.h> -#include <alloca.h> #include "mpconfig.h" #include "nlr.h" diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index bf2cf73efd671277a8f318af46a9a8b70970e2e1..3426ae44fec6af25ad81840e932cc6069f387f8c 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -99,3 +99,10 @@ extern const struct _mp_obj_fun_native_t mp_builtin_open_obj; #define MICROPY_PORT_BUILTINS \ { MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, + +// We need to provide a declaration/definition of alloca() +#ifdef __FreeBSD__ +#include <stdlib.h> +#else +#include <alloca.h> +#endif diff --git a/windows/alloca.h b/windows/alloca.h deleted file mode 100644 index 4d47e4aabf93cfd7b4c31f0fe47f4e0bf6025ea0..0000000000000000000000000000000000000000 --- a/windows/alloca.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * This file is part of the Micro Python project, http://micropython.org/ - * - * The MIT License (MIT) - * - * Copyright (c) 2013, 2014 Damien P. George - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ - -// Compatibility header to workaround lack of native alloca.h in some -// Windows toolchains. -#include <malloc.h> diff --git a/windows/mpconfigport.h b/windows/mpconfigport.h index 94304e20d2a60167cf973d7b64565f706c62375d..63eeb4d962e53efb0a7ce4a9ce352be1dfe3b505 100644 --- a/windows/mpconfigport.h +++ b/windows/mpconfigport.h @@ -92,7 +92,7 @@ void msec_sleep(double msec); #endif -// CL specific overrides from mpconfig +// CL specific overrides from mpconfig #define NORETURN __declspec(noreturn) #define MICROPY_PORT_CONSTANTS { "dummy", 0 } //can't have zero-sized array @@ -114,7 +114,7 @@ void msec_sleep(double msec); #include <stddef.h> //for NULL #include <assert.h> //for assert - +#include <malloc.h> //for alloca() // Functions implemented in platform code