Scheme: Save preprocessor output for all compiled files

This is a wrapper for the MSVC compiler (cl.exe) to generate a .i file as well as a .obj. Compiled with Bigloo.

(module cl-wrap
(main main))
 
(define (quote-args args)
(let loop ((args args)
(result ""))
(if (null? args)
result
[...]

June 7, 2009 • Tags: , , , , • Posted in: Jigs • Comments Closed