Is it possible to compile for Windows or Mac OSX while working in Linux for Racket programming language (cross-compile)? DrRacket IDE does not provide any such menu item. Raco help command also did not show any such option:
$ raco help make
raco make [ <option> ... ] <file> [<another-file>] ...
where <option> is one of
-j <n> : Compile with up to <n> tasks in parallel
--disable-inline : Disable procedure inlining during compilation
--disable-constant : Disable enforcement of module constants
--no-deps : Compile immediate files without updating dependencies
-p <file>, --prefix <file> : Add elaboration-time prefix file for --no-deps
--no-prim : Do not assume `scheme' bindings at top level for --no-deps
-v : Verbose mode
--vv : Very verbose mode
--help, -h : Show this help
-- : Do not treat any remaining argument as a switch (at this level)
Multiple single-letter switches can be combined after one `-'; for
example: `-h-' is the same as `-h --'
I suspect it is not possible in Racket. Is it possible for any other Scheme or Lisp language? Thanks for your comments.