mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
chibi-genstatic: Add --no-inline option
Add --no-inline option to improve debuggability.
This commit is contained in:
parent
307c3aeecf
commit
bfec8b9f4e
1 changed files with 3 additions and 1 deletions
|
@ -393,13 +393,15 @@
|
|||
(includes #f)
|
||||
(excludes '())
|
||||
(cfiles '())
|
||||
(inline? #f))
|
||||
(inline? #t))
|
||||
(cond
|
||||
((and (pair? args) (not (equal? "" (car args)))
|
||||
(eqv? #\- (string-ref (car args) 0)))
|
||||
(case (string->symbol (car args))
|
||||
((--inline)
|
||||
(lp (cdr args) features includes excludes cfiles #t))
|
||||
((--no-inline)
|
||||
(lp (cdr args) features includes excludes cfiles #f))
|
||||
((--features)
|
||||
(if (null? (cdr args))
|
||||
(error "--features requires an argument"))
|
||||
|
|
Loading…
Add table
Reference in a new issue