scc

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

commit de1dcdb047bfb84d061743b5b53170f23b2516ea
parent 039c9823ceccbab70677113a277d2789c0127483
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed,  8 Jun 2016 17:52:35 +0200

[driver] add L flag

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

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