scc

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

commit 3f873d8bfd3f33a50725ae81b71fc8d1fb1f7a61
parent e58e69da7f50208398f465eedf152b8c32a49c59
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 11 Jan 2025 13:13:46 +0100

libc: Accept -g as parameter of gcc-scc

This is convenient as it can be part of the build system.

Diffstat:
Msrc/libc/gcc-scc.sh | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/libc/gcc-scc.sh b/src/libc/gcc-scc.sh @@ -5,6 +5,9 @@ set -e for i do case "$i" in + -g) + shift + ;; -r) root=$2 shift 2