mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
Improve formatting of "-d" output
This commit is contained in:
parent
cbb15c98dc
commit
76a3778dda
1 changed files with 6 additions and 3 deletions
|
@ -347,8 +347,10 @@
|
||||||
(if (equal? 0 (system comp-prog-cmd))
|
(if (equal? 0 (system comp-prog-cmd))
|
||||||
(system comp-objs-cmd)))
|
(system comp-objs-cmd)))
|
||||||
(else
|
(else
|
||||||
(write comp-prog-cmd)
|
(display comp-prog-cmd)
|
||||||
(write comp-objs-cmd)))))
|
(newline)
|
||||||
|
(display comp-objs-cmd)
|
||||||
|
(newline)))))
|
||||||
(else
|
(else
|
||||||
;; Emit .meta file
|
;; Emit .meta file
|
||||||
(with-output-to-file
|
(with-output-to-file
|
||||||
|
@ -364,7 +366,8 @@
|
||||||
(cc?
|
(cc?
|
||||||
(system comp-lib-cmd))
|
(system comp-lib-cmd))
|
||||||
(else
|
(else
|
||||||
(write comp-lib-cmd))))))))
|
(display comp-lib-cmd)
|
||||||
|
(newline))))))))
|
||||||
|
|
||||||
|
|
||||||
;; Handle command line arguments
|
;; Handle command line arguments
|
||||||
|
|
Loading…
Add table
Reference in a new issue