SPRESENSE opened a new issue, #11006: URL: https://github.com/apache/nuttx/issues/11006
`P` option has been added to archive command by https://github.com/apache/nuttx/pull/10395. The `P` option of `ar` command has the following description. ``` P Archives created with full path names are not POSIX compliant ``` Thus, it cannot extract or strip archive files with path names directly. ``` $ arm-none-eabi-ar x libm.a bin//lib_acosf.o: No such file or directory $ arm-none-eabi-strip --strip-unneeded libm.a arm-none-eabi-strip: stnJhpyc/bin//lib_acosf.o: No such file or directory ``` If the `P` option is not mandatory for NuttX, it should avoid mixing the same filename in one archive file without `P` option. -- 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]
