diff options
author | alaviss <alaviss@users.noreply.github.com> | 2020-02-18 18:44:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 19:44:54 +0100 |
commit | d1f9f11245a29f00bfa8cd86f9b4eb4ab0963a15 (patch) | |
tree | ae724886f93ef81b82da30d30ef1c31e0dad3841 /changelog.md | |
parent | 046bb0b881b1e4917fd0ff230f9d716d31f1f20c (diff) | |
download | Nim-d1f9f11245a29f00bfa8cd86f9b4eb4ab0963a15.tar.gz |
manual: documents changes regarding dynlib (#13425)
* manual: documents changes regarding dynlib Closes #13416 * manual: clean up sentence phrasing
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index 33be5da21..ad18bec6b 100644 --- a/changelog.md +++ b/changelog.md @@ -32,7 +32,9 @@ - Implicit conversions for `const` behave correctly now, meaning that code like `const SOMECONST = 0.int; procThatTakesInt32(SOMECONST)` will be illegal now. Simply write `const SOMECONST = 0` instead. - +- The `{.dynlib.}` pragma is now required for exporting symbols when making + shared objects on POSIX and macOS, which make it consistent with the behavior + on Windows. ## Library additions |