Charles Oliver Nutter

Results 1151 comments of Charles Oliver Nutter

I think we've done everything we can in JRuby for this with the optimization change in #8576 (only in 10.x). The remaining issues are simply a problem of throughput in...

Seems like the launcher does not support `.jruby.java_opts` files properly. Perhaps it was never added. On Matrix, @jlahtinen reported that `strace` did not report any accesses whatsoever of any `java_opts`...

I believe this is largely fixed by #48 for unix and a new Rust-based launcher from @enebo will duplicate the jruby.sh behavior for Windows.

RE2/J 1.8 was released Jan 8 2025, so I think this can be closed.

https://github.com/jruby/jruby/issues/8723#issuecomment-2762913499

An idea: ```c int main(int argc, char *argv[]) { // argc + sh and null, since we replace argv[0] with jruby.sh char **newargs = (char**) valloc((argc + 2) * sizeof(char...

A fleshed-out version of my idea, by @mrnoname1000: https://gist.github.com/mrnoname1000/f95c72c7866bb9c14e8a52abadf35b21 My current idea would be: * Use this logic on unix, since we can count on `/bin/sh` existing and `jruby.sh` is...

https://github.com/jruby/jruby-launcher/pull/48

I pushed to master a CI fix you can rebase.

I tested this out by pulling your branch and making a gem from it: 1. update version in `lib/jruby-launcher.rb` 2. run `rake update_version` to update the version in the header...