casaroli commented on code in PR #19673: URL: https://github.com/apache/nuttx/pull/19673#discussion_r3743889191
########## include/nuttx/lib/elf.h: ########## @@ -186,6 +186,18 @@ struct module_s uint16_t nsect; /* Number of entries in sectalloc array */ #endif int dynamic; /* Module is a dynamic shared object */ + bool fdpic; /* Module is an FDPIC object: its two + * segments were placed separately and + * the text is media, not an allocation + */ + uintptr_t gotaddr; /* An FDPIC object's data base, to Review Comment: I don't think so, because we can have a FDPIC module with no imports has no `DT_PLTGOT`, and it will have `gotaddr` = 0 -- 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]
