acassis commented on PR #14600: URL: https://github.com/apache/nuttx/pull/14600#issuecomment-2452976342
@tmedicci I think it will break ELF for some arch that doesn't use CONFIG_ARCH_USE_TEXT_HEAP see: ``` #if defined(CONFIG_ARCH_USE_TEXT_HEAP) #if defined(CONFIG_ARCH_HAVE_TEXT_HEAP_SEPARATE_DATA_ADDRESS) FAR void *up_textheap_data_address(FAR void *p); #else #define up_textheap_data_address(p) ((FAR void *)p) #endif #endif ``` Note that up_textheap_data_address() doesn't exist case CONFIG_ARCH_USE_TEXT_HEAP is not defined -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
