scc

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

commit 2b69b9c506ebf23351fa26f6c30e79fcc2d256c0
parent 6ab66ac2cfce3feebebaaa9ad3963abb29a10d1c
Author: Quentin Rameau <quinq@fifth.space>
Date:   Tue, 14 Feb 2017 14:16:13 +0100

[driver] Parse -Ofoo but ignore it (at least for now)

Diffstat:
Mdriver/posix/scc.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/driver/posix/scc.c b/driver/posix/scc.c @@ -443,6 +443,9 @@ main(int argc, char *argv[]) addarg(LD, "-L"); addarg(LD, EARGF(usage())); break; + case 'O': + EARGF(usage()); + break; case 'S': Sflag = 1; break;