LeeTibbert

Results 665 comments of LeeTibbert

I took a closer look at the log file for the failing multiarch builds. The ``` Error: ld.lld: error: relocation R_AARCH64_ABS64 cannot be used against local symbol; recompile with -fPIC...

Perhaps the linker suggestion to recompile with `-fPIC` is not unreasonable. `ci-docker/Dockerfile` builds the offending `zlib` ```# We cannot easily install dependencies, clone and build zlib and Boehm locally RUN...

Eric's PR #2788 is all green in multiarch. `configure` finds shared library support there and did not find it in this PR. I do not know what changed or if...

Now that you have SN 0.4.7 out and have nothing to do but wait for the laurels to arrive in the post, let me reply. I have been holding off...

for future readers "sbt> show NativeConfig" also reveals the currently active Scala Native version.

I discovered this defect whilst trying to come up with a more elegant solution to review comments for memory handling in `bind()` & `connect()` PlainSocketImpl calls.

To be explicit, the concern is verification of socket type: SOCK_DGRAM should be handled. SOCK_SEQPACKET, SOCK_RAW, etc, should be rejected until support is provided. Yes, it would be nice in...

Turns out that Java 8 `Socket` class, at least, deprecates the constructors which specify stream. The recommended DatagramSocket class appears to not be implemented in Scala Native. Call Herakles, there...

The reason that lack of Datagram may be a concern is that HTTP3 uses QUIC, which uses UDP (a.k.a Datagram).

Thank you for the URLs. All three are interesting. My main reason for updating this issue was to provide some background why it was not just a crank "oh there...