aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/unix/Makefile.inc
AgeCommit message (Collapse)AuthorFilesLines
2022-03-16newlib: libc: merge build up a directoryMike Frysinger1-0/+35
Convert all the libc/ subdir makes into the top-level Makefile. This allows us to build all of libc from the top Makefile without using any recursive make calls. This is faster and avoids the funky lib.a logic where we unpack subdir archives to repack into a single libc.a. The machine override logic is maintained though by way of Makefile include ordering, and source file accumulation in libc_a_SOURCES. There's a few dummy.c files that are no longer necessary since we aren't doing the lib.a accumulating, so punt them. The winsup code has been pulling the internal newlib ssp library out, but that doesn't exist anymore, so change that to pull the objects.
2022-02-17newlib: libc: reshuffle include order for the manualMike Frysinger1-0/+0
When migrating the manual to the top-level, the include order was sorted by name of the subdir. But this changed the chapter order of the manual in the process. Change the sorting back to match existing chapters and update the comments to explain.