Fix pr 12205 pass --disable-inline and --vv options through to parallel make
original commit: 099e89a297
This commit is contained in:
parent
569f5e20a9
commit
9f5362d806
|
@ -91,4 +91,13 @@
|
|||
(match type
|
||||
['done (when (verbose) (printf " Made ~a\n" work))]
|
||||
['output (printf " Output from: ~a\n~a~a" work out err)]
|
||||
[else (printf " Error compiling ~a\n~a\n~a~a" work msg out err)])))])
|
||||
[else (printf " Error compiling ~a\n~a\n~a~a" work msg out err)]))
|
||||
#:options
|
||||
(let ([cons-if-true (lambda (bool carv cdrv)
|
||||
(if bool
|
||||
(cons carv cdrv)
|
||||
cdrv))])
|
||||
(cons-if-true
|
||||
(very-verbose)
|
||||
'very-verbose
|
||||
(cons-if-true (disable-inlining) 'disable-inlining null))))])
|
||||
|
|
Loading…
Reference in New Issue
Block a user