[oe-commits] [openembedded-core] 08/10: newlib: Move syscalls from newlib to libgloss

git at git.openembedded.org git at git.openembedded.org
Tue Feb 18 23:54:55 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit e777c882693552c3ddd070c5943a0cadcae0bf43
Author: Mark Hatle <mark.hatle at kernel.crashing.org>
AuthorDate: Fri Feb 14 12:34:14 2020 -0600

    newlib: Move syscalls from newlib to libgloss
    
    By passing --disabled-newlib-supplied-syscalls, newlib will disable the
    generation of builtin syscalls and move this to libgloss.  (This also
    affects the generation of crt0.o.)
    
    libgloss SHOULD then provide the syscalls, crt0.o and other functions that
    are no longer part of newlib itself.  This now means that you must link
    with both newlib and libgloss, whereas before newlib would run in many
    configurations by itself.
    
    Signed-off-by: Mark Hatle <mark.hatle at kernel.crashing.org>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/newlib/newlib.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/newlib/newlib.inc b/meta/recipes-core/newlib/newlib.inc
index d7ac8bf..5edea8a 100644
--- a/meta/recipes-core/newlib/newlib.inc
+++ b/meta/recipes-core/newlib/newlib.inc
@@ -42,6 +42,7 @@ EXTRA_OECONF = " \
 		--with-gnu-as \
 		--with-gnu-ld \
 		--disable-multilib \
+		--disable-newlib-supplied-syscalls \
 		"
 
 do_configure[cleandirs] = "${B}"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list