scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit f019da200f8c05fb1e63a225946c576528c16171
parent 767a733c93e2c4c78316e85f6a318bc7985f0321
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Mon, 13 Apr 2026 12:13:35 +0200

libc: Use scc to build string

String has good coverage in the library tests, so it is ideal for the
first part of the libc migrated to use the built scc as an additional
step to self host scc.

Diffstat:
Msrc/libc/string/Makefile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/libc/string/Makefile b/src/libc/string/Makefile @@ -3,6 +3,7 @@ PROJECTDIR =../../.. include $(PROJECTDIR)/scripts/rules.mk include ../rules.mk +CC=$(SCC) OBJS =\ memchr.$O\