mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
872 B
872 B
layout | title | excerpt |
---|---|---|
post | Released Cyclone Scheme 0.27 | This release contains enhancements to our C integration as well as various bug fixes. |
Features
- Arthur Maciel added
opaque?
andopaque-null?
predicates to(cyclone foreign)
. - Added
import-shared-object
to(scheme eval)
to allow loading a third party C shared library. - Allow C compiler/linker options from a library to be expanded via
cond-expand
.
Bug Fixes
- Updated the runtime to avoid a race condition when creating new symbols. Thanks to Skye Soss for the bug report and patch.
- Prevent the compiler from inlining calls to primitives that open ports, avoiding a range of issues such as an open file operation being inlined across multiple places in the intermediate code. Thanks to Andy Arvanitis for the bug report.
- Arthur Maciel updated
current-jiffy
to useclock_gettime
.