Cross-compiling to ARM gives rpl_realloc errors

Issue #43 resolved
Former user created an issue

I had an error when trying to cross-compile to ARM. I had to set 2 environments variables

see http://wiki.buici.com/xwiki/bin/view/Programing+C+and+C%2B%2B/Autoconf+and+RPL_MALLOC

export ac_cv_func_malloc_0_nonnull=yes export ac_cv_func_realloc_0_nonnull=yes

Maybe it could be in the install or readme. Maybe there are better solution to solve this.

Comments (5)

  1. Kaz Nishimura repo owner

    I added AC_FUNC_MALLOC and AC_FUNC_REALLOC as insisted by autoscan but did not provide any replacement functions. We could drop the two since any recent implementations of malloc and realloc should behave as specified in the language standard. Thank you for reporting.

  2. Log in to comment