This commit is contained in:
Justin Ethier 2021-09-07 07:47:16 -04:00
parent 67384621bc
commit 28c166a03e

View file

@ -11,6 +11,10 @@ Features
- During compilation the compiler will now call itself as a subprocess to perform Scheme-to-C compilation. This allows Cyclone to free all of those resources before calling the C compiler to generate a binary, resulting in more efficient compilation.
Bug Fixes
- Do not display error message for missing file(s) if SCM->C compilation fails.
## 0.32.0 - August 16, 2021
Features
@ -19,7 +23,7 @@ Features
- Cyclone will no longer memoize pure functions by default.
- Added build option `CYC_PTHREAD_SET_STACK_SIZE` to allow Cyclone to specify a thread stack size rather than using the OS default. EG:
make CYC_PTHREAD_SET_STACK_SIZE=1 libcyclone.a
make CYC_PTHREAD_SET_STACK_SIZE=1 libcyclone.a
Bug Fixes