niner

Results 161 comments of niner

How did you install Rakudo? Did you compile it yourself or did you use a precompiled package?

I'm sorry, I haven't been able to reproduce this so far on openSUSE Tumbleweed. I've installed mongodb and started it and confirmed it's listening on port 27017. Then run your...

Basically what's needed here is mapping Raku's $_ to Perl's. That should be quite possible as $_ is available to XS code as UNDERBAR. It will cost a bit of...

> # Failed test 'at least one destructor ran' > # at t/p5_object_destructor.t line 40 > # Failed test 'at least one destructor ran' > # at t/p5_object_destructor.t line 41...

Yes, AFAIK rakudo's NativeCall still has issues on ARM

@AlexDaniel: do you know if Inline::Perl5 or NativeCall have still issues on ARM?

This is easy enough to fix in Inline::Perl5 but unfortunately this won't gain us much as rakudo cannot handle native unsigned integers larger than 2^63 yet.

Does adding a `no precompilation;` to those modules help?

If module A prohibits precompilation and module B uses module A, then module B will not be precompiled either (as it cannot be). If you need to add a `no...

Seems like there's an issue with zef and/or Distribution::Builder::MakeFromJSON. If python2-config is not available it should report a failing build-dependency before even getting to the runtime dependency. Also without python2-config...