From 62c929e529efc7bfce96fb223d6afb969f84303b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 10 Jan 2020 17:22:55 -0500 Subject: [PATCH] Reflect latest changes with batch compilation --- CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57fc5143..06fd88df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,15 @@ Features -- When compiling a program with `cyclone` any library dependencies will be automatically built as well. +- When compiling a program with `cyclone` any library dependencies are 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. + - A library will only be built if an object file does not exist for it or if any of the source files are 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 -- Do not inline functions if optimizations are disabled via `-O0`. +- Prevent compilation errors when optimizations are disabled via `-O0`. ## 0.11.8 - December 30, 2019