Added more details on batch compilation

This commit is contained in:
Justin Ethier 2020-01-07 22:40:14 -05:00
parent 2c3a85efb9
commit 93393a4f1c

View file

@ -4,7 +4,12 @@
Features
- WIP: added batch compilation (TODO: more details)
- When compiling a program with `cyclone` any library dependencies will be automatically built as well.
Note:
- A library will only be built if an object file does not exist for it or the `.sld` source file is newer than the object file.
- Only "local" libraries will be built. Cyclone will not automatically attempt to build libraries in system directories.
- This capability can be disabled by the `-no-batch` option.
- Added `define-values` from R7RS.
Bug Fixes