aboutsummaryrefslogtreecommitdiff
path: root/lib/libsys/powerpcspe
Commit message (Collapse)AuthorAgeFilesLines
* lib: remove powerpcspeMinsoo Choo2026-01-091-5/+0
| | | | | | | Signed-off-by: Minsoo Choo <minsoochoo0122@proton.me> Reviewed by: emaste Pull Request: https://github.com/freebsd/freebsd-src/pull/1914 (cherry picked from commit 907cf3e4378f9d114af41d05a59ef4a075d3efb0)
* lib{c,sys}: fix powerpcspe buildBrooks Davis2024-03-131-2/+0
| | | | | | | libsys/powerpc/Symbol.sys.map was removed due to all symbols moving to libc. Fixes: d7847a8d3514 lib{c,sys}: return wrapped syscall APIs to libc
* libsys: fix powerpcspe buildBrooks Davis2024-02-071-1/+1
| | | | | Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D43771
* libc: Move per-arch sys/Makefile.inc to libsysBrooks Davis2024-02-051-0/+7
libc/<arch>/sys/Makefile.inc -> libsys/<arch>/Makefile.sys. Require that libsys/<arch>/Makefile.sys exist. At least for current archtiectures, it's not possible for an architecture to not have and MD syscall bits. powerpcspe/Makefile.sys's structure means it had to be modified when moved so rename detection won't work, but it has trivial contents so the history is unimportant. Reviewed by: kib, emaste, imp Pull Request: https://github.com/freebsd/freebsd-src/pull/908