Skip to content

Commit

Permalink
Updates release notes for PR #4303
Browse files Browse the repository at this point in the history
  • Loading branch information
ponylang-main committed Jan 17, 2023
1 parent 02398a9 commit b54f665
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .release-notes/4303.md

This file was deleted.

15 changes: 15 additions & 0 deletions .release-notes/next-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Enable building of libponyc-standalone on MacOS

We now ship a "standalone" version of libponyc for MacOS. libponyc-standalone allows applications to use Pony compiler functionality as a library. The standalone version contains "all dependencies" needed in a single library. On MacOS, sadly "all dependencies" means "all that can be statically linked", so unlike Linux, dynamically linking to C++ standard library is required on MacOS.

An example pony program linking against it would need to look like this:

```pony
use "lib:ponyc-standalone" if posix or osx
use "lib:c++" if osx
actor Main
new create(env: Env) =>
None
```

0 comments on commit b54f665

Please sign in to comment.