niner

Results 218 comments of niner

On Wednesday, 19 April 2023 19:47:33 CEST Dominique Dumont wrote: > That said I want to try a tweak on function `_m_source_digest` (file > `tools/lib/NQP/Config/Rakudo.pm`). This function compiles a digest...

Apart from that obscure error message: how is it even possible that NativeCall is not precompiled? That is done as part of the installation of Rakudo itself.

On Sunday, 6 November 2022 10:35:06 CET Elizabeth Mattijsen wrote: > But if the $*REPO is changed, wouldn't it need to be re-precompiled again? Yes, but that is not the...

So it doesn't even try to precompile anything as the installed NativeCall loads just fine after all. What it may try (and fail) to do is store a .repo-id file...

Funnily enough, I've just seen that exact same error here while investigating an issue in a NativeCall test on rakuast. I added some debug output to MoarVM but made a...

No, not a fix, maybe a workaround. Bar's mainline should be run when the module gets loaded. Apparently it isn't when `no precompilation` is in effect.

I would put those modules into a sub directory called p5lib and then just `use lib:from 'p5lib';` Actually I would do neither and instead declare those modules as dependencies in...

The HTML profiler output is really only suitable for quite small programs as the profile data necessarily gets quite large. For a much better performing profiler look at https://github.com/timo/moarperf

AFAIR CArray assumes that it always owns the memory holding the elements and that this memory can be freed via a call to `free()`. glib seems to have it's own...