[PATCH rtems-source-builder] rtems-gcc-12-newlib-head.cfg: Update to include true long double math

2023-05-17 Thread Joel Sherrill
Previously newlib only had long double math functions when the sizeof(double) was equal to sizeof(long double). Newlib now includes support for true long double on x86, x86_64, and aarch64. --- rtems/config/tools/rtems-gcc-12-newlib-head.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [PATCH rtems-source-builder] rtems-gcc-12-newlib-head.cfg: Update to include true long double math

2023-05-17 Thread Chris Johns
OK. Well done on the long doubles work. Chris On 18/5/2023 7:13 am, Joel Sherrill wrote: > Previously newlib only had long double math functions when the > sizeof(double) was equal to sizeof(long double). Newlib now includes > support for true long double on x86, x86_64, and aarch64. > --- >

Re: [PATCH] libmisc/shell: Fix file pointer leak and improved input data sanitation.

2023-05-17 Thread Joel Sherrill
This looks ok. I will push it. Coverity is run up 1215 am and 1215 pm my time (910am now) so we should have feedback in a few hours. --joel On Tue, May 16, 2023 at 7:04 PM wrote: > From: Aaron Nyholm > > Coverity #1530126 > Coverity #1530125 > --- > cpukit/libmisc/shell/main_flashdev.c | 27

Re: Flashdev coverity fixes

2023-05-17 Thread Joel Sherrill
Thanks for the quick patch. It's a continuous effort to not let new issues creep in and nibble at the existing ones. --joel On Tue, May 16, 2023 at 7:03 PM wrote: > This patch addresses both coverity issues. I moved the data sanitation > from in the functions to before they are called. > >