[PATCH] C11 support for

2015-09-24 Thread Sebastian Huber
Import some function declarations from latest FreeBSD. newlib/ChangeLog 2015-09-24 Sebastian Huber * libc/include/stdlib.h (alloc_aligned): Declare. (at_quick_exit): Likewise. (quick_exit): Likewise. ---

[PATCH] [rtems-testing] Enable Rtems tests samples

2015-09-24 Thread Aurelio Remonda
This patch enables rtems tests samples on the do_one script. When setting up the environment for testing stdlibc++ you need this test samples to check everything it's ok before running the gcc test suite. This check consists on running a sample (i.e ticker.exe) making sure it behaves as it

[PATCH] [rtems-testing] Update environment README

2015-09-24 Thread Aurelio Remonda
This patch update the README file on /rtems-testing: *Added comments about bootstrap and RTEMS building steps. *Added comments about RTEMS test samples. *Updated binutils, newlib and gcc repositories using git now. *Updated gdb, autoconf and automake repositories using ftp sites now. --- README

Math lib inclusion in BSP

2015-09-24 Thread sudarshan.rajagopalan
Hey all, We are developing a new BSP that uses math.h in few of the BSP files. I do understand that the math library functions are not part of standard C library and has to be linked using "-lm". So I include "LD_LIBS += -lm" in the custom .cgf config file but this doesn't seem to work. I

Re: Math lib inclusion in BSP

2015-09-24 Thread Sebastian Huber
On 24/09/15 21:49, sudarshan.rajagopalan wrote: We are developing a new BSP that uses math.h in few of the BSP files. I do understand that the math library functions are not part of standard C library and has to be linked using "-lm". So I include "LD_LIBS += -lm" in the custom .cgf

Re: Math lib inclusion in BSP

2015-09-24 Thread Gedare Bloom
We usually link it later in the Makefile, e.g. see samples/paranoia I believe On Thu, Sep 24, 2015 at 3:49 PM, sudarshan.rajagopalan wrote: > Hey all, > > We are developing a new BSP that uses math.h in few of the BSP files. I do > understand that the math