diff options
author | awr1 <41453959+awr1@users.noreply.github.com> | 2023-08-03 14:06:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 23:06:30 +0200 |
commit | 14bc3f32683c87f971bf23ae30d500dc89cdebb8 (patch) | |
tree | 7c4609be532ff2dcdb71af39abd220af1ca3d931 /changelogs | |
parent | 8d8d75706cddc40ff00b163ebd9aa2728afdf7ef (diff) | |
download | Nim-14bc3f32683c87f971bf23ae30d500dc89cdebb8.tar.gz |
Allow `libffi` to work via `koch boot` (#22322)
* Divert libffi from nimble path, impl into koch * Typo in koch * Update options.nim comment * Fix CI Test * Update changelog * Clarify libffi nimble comment * Future pending changelog --------- Co-authored-by: ringabout <43030857+ringabout@users.noreply.github.com>
Diffstat (limited to 'changelogs')
-rw-r--r-- | changelogs/changelog_2_2_0.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/changelogs/changelog_2_2_0.md b/changelogs/changelog_2_2_0.md new file mode 100644 index 000000000..97b9e6c05 --- /dev/null +++ b/changelogs/changelog_2_2_0.md @@ -0,0 +1,14 @@ +# v2.2.1 - 2023-mm-dd + +## Changes affecting backward compatibility + +## Standard library additions and changes + +## Language changes + +## Compiler changes + +## Tool changes + +- koch now allows bootstrapping with `-d:nimHasLibFFI`, replacing the older option of building the compiler directly w/ the `libffi` nimble package in tow. + |