scc

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

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

libc: Use scc to build assert

Assert 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/assert/Makefile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

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