scc

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

commit 8f382566b9ee9d121277e4c45708bbd40c45a98b
parent f259f4882880a1f6996aeaf8f5be834e3ef45c5c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 12 Jan 2024 14:46:11 +0100

driver: Fix musl template

Commit 631357bb9 introduced a bug when musl was used because a
comma was missed.

Diffstat:
Minclude/scc/scc/sys-musl.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/scc/scc/sys-musl.h b/include/scc/scc/sys-musl.h @@ -31,6 +31,6 @@ char *ldcmd[] = { /* configure below your system assembler command line */ char *ascmd[] = { - "-o", "%o" + "-o", "%o", NULL };