scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit a6dc40f7334e97e26554db6b8293633dba06f7c0
parent 5a7aca21751521d32e23c7dc29d83b2448244d26
Author: Quentin Rameau <quinq@fifth.space>
Date:   Thu,  2 Jun 2016 12:37:34 +0200

[driver] use actual as(1) command instead of cat(1)

Diffstat:
Mdriver/posix/scc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/driver/posix/scc.c b/driver/posix/scc.c @@ -36,7 +36,7 @@ static struct tool { [CC1] = { .bin = "cc1", .cmd = PREFIX "/libexec/scc/", }, [CC2] = { .bin = "cc2", .cmd = PREFIX "/libexec/scc/", }, [QBE] = { .bin = "qbe", .cmd = "qbe", }, - [AS] = { .bin = "cat", .cmd = "cat", }, + [AS] = { .bin = "as", .cmd = "as", }, [TEE] = { .bin = "tee", .cmd = "tee", }, };