-
https://lld.llvm.org
This would eliminate the compiler's dependence on a C compiler for linking on Linux and on `link.exe` for linking on Windows.
LLD could be used as a library rather than need…
-
#### Is this a bug, feature request, or feedback?
Bug
#### What is the current behavior?
The help section is printed twice
#### What is the expected behavior?
Help section should only be prin…
-
Packaging ponyc 0.15.0 for openSUSE, PR https://github.com/ponylang/ponyc/pull/2047 solved most of the previous test problems, but the one in the subject is still lingering.
It occurs sometimes on …
-
Pony code:
```
class Range[A: (A val & Integer[A] & Unsigned)]
actor Main
new create(env: Env) =>
let r = Range[U16]()
```
Playground responds:
```
0.21.3 [release]
compiled with…
-
```
> make run-example
savi run example
asio/kqueue.c:403: pony_asio_event_unsubscribe: Assertion `0` failed.
Backtrace:
0x20c7d8 at /usr/home/mneumann/Dev/mneumann-savi/MQTT/bin/example
…
-
We had this sort of on the old tutorial but that didn't get migrated over.
-
What I love is to know which features are implemented without to read closed pull requests.
So, I think it's good if the RFC repository is marked as a release.
And it would be nice if a changelog* s…
-
Here's a minimal example.
```pony
actor Main
new create(env: Env) =>
foo()
fun foo() =>
@bar[None](addressof baz)
fun baz() =>
None
```
The error is the following:
…
-
I now stand in the company of several people who've been frustrated by ponyc's lack of diagnostic information when the linking stage fails. Causes such as lack of sufficient virtual memory and missin…
-
Format("u" where width = 4) results in String with len = 4, "u ", that is ok
Format("ü" where width = 4) results in String with len = 3, "ü " on a utf8 encoded system, that is not ok
I realize…