diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-22 23:10:46 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-26 03:11:20 -0500 |
commit | fbfeebc221556d70ab473b153a44c92260c3caf0 (patch) | |
tree | 4da3c751d18a9296f4a8b9c041852b0d1467b0ce /newlib/libc/reent | |
parent | db2ef77287fcc19dfa1fe6c3d3068794ff99bd01 (diff) | |
download | newlib-fbfeebc221556d70ab473b153a44c92260c3caf0.zip newlib-fbfeebc221556d70ab473b153a44c92260c3caf0.tar.gz newlib-fbfeebc221556d70ab473b153a44c92260c3caf0.tar.bz2 |
newlib: libc: merge sys/ trampoline up a level
The sys/{configure,Makefile} files exist to fan out to the specific
sys/$arch/ subdir, and to possibly generate a crt0. We already have
all that same info in the libc/ dir itself, so by moving the recursive
configure and make calls into it, we can cut off some of this logic
entirely and save the overhead.
For arches that don't have a sys subdir, it means they can skip the
logic entirely.
The sys subdir itself is kept for the crt0 logic, for now. We'll try
and clean that up next.
Diffstat (limited to 'newlib/libc/reent')
-rw-r--r-- | newlib/libc/reent/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/reent/Makefile.in b/newlib/libc/reent/Makefile.in index 5b5a489..d1c3069 100644 --- a/newlib/libc/reent/Makefile.in +++ b/newlib/libc/reent/Makefile.in @@ -308,6 +308,7 @@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ +SYS_DIR = @SYS_DIR@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ |