New submission from Tobias Oberstein <[email protected]>: FreeBSD has alloca() defined in stdlib.h, not alloc.h.
Various tests (mostly cffi related) fail due to this. Hence we should add something like the following to all respective locations: #ifdef __FreeBSD__ # include <stdlib.h> #else # include <alloca.h> #endif ---------- assignedto: oberstet messages: 6344 nosy: oberstet, pypy-issue priority: bug status: unread title: FreeBSD: alloc.h header missing ________________________________________ PyPy bug tracker <[email protected]> <https://bugs.pypy.org/issue1637> ________________________________________ _______________________________________________ pypy-issue mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-issue
