public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] RTEMS: Add aligned_alloc() to crt0
@ 2018-08-08  6:43 Sebastian Huber
  0 siblings, 0 replies; only message in thread
From: Sebastian Huber @ 2018-08-08  6:43 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=dedeea99658ed476a1fdb06ed46576808c59d3b6

commit dedeea99658ed476a1fdb06ed46576808c59d3b6
Author: Sebastian Huber <sebastian.huber@embedded-brains.de>
Date:   Wed Aug 8 08:36:13 2018 +0200

    RTEMS: Add aligned_alloc() to crt0
    
    This is necessary to build the latest GCC 7 branch.
    
    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85904
    
    Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>

Diff:
---
 newlib/libc/sys/rtems/crt0.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c
index ff3e7e6..6ab4dcb 100644
--- a/newlib/libc/sys/rtems/crt0.c
+++ b/newlib/libc/sys/rtems/crt0.c
@@ -15,6 +15,7 @@
 #include <sys/uio.h>
 #include <reent.h>
 #include <signal.h>
+#include <stdlib.h>
 #include <time.h>
 #include <unistd.h>
 #include <machine/_arc4random.h>
@@ -32,6 +33,7 @@ RTEMS_STUB(void *,realloc(void* p, size_t s), { return 0; })
 RTEMS_STUB(void, free(void* ptr), { })
 RTEMS_STUB(void *, calloc(size_t s1, size_t s2), { return 0; })
 RTEMS_STUB(int, posix_memalign(void **p, size_t si, size_t s2), { return -1; })
+RTEMS_STUB(void *, aligned_alloc(size_t s1, size_t s2), { return 0; })
 
 /* Stubs for routines from RTEMS <sys/lock.h> */
 RTEMS_STUB(void, _Mutex_Acquire(struct _Mutex_Control *p), { })
@@ -189,7 +191,7 @@ RTEMS_STUB(int, issetugid (void), { return 0; })
 RTEMS_STUB(void *, _realloc_r(struct _reent *r, void *p, size_t s), { return 0; })
 RTEMS_STUB(void *, _calloc_r(struct _reent *r, size_t s1, size_t s2), { return 0; })
 RTEMS_STUB(void *, _malloc_r(struct _reent * r, size_t s), { return 0; })
-RTEMS_STUB(void, _free_r(struct _reent *r, void **p), { })
+RTEMS_STUB(void, _free_r(struct _reent *r, void *p), { })
 
 /* stubs for functions required by libc/stdlib */
 RTEMS_STUB(void, __assert_func(const char *file, int line, const char *failedexpr), { })


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-08-08  6:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-08  6:43 [newlib-cygwin] RTEMS: Add aligned_alloc() to crt0 Sebastian Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).