Allow RUBY_GC_LIBRARY_PATH to be set in miniruby

miniruby is used by tool/runruby.rb, so we need to ensure we don't rb_bug
when RUBY_GC_LIBRARY_PATH is set so we can run tests using the make
commands. This commit changes it to warn instead.
This commit is contained in:
Peter Zhu 2024-04-26 15:27:56 -04:00
parent 392b811baf
commit f64c97418b
4 changed files with 23 additions and 2 deletions

View file

@ -3,6 +3,12 @@
#include "ruby/ruby.h"
bool
dln_supported_p(void)
{
return false;
}
NORETURN(void *dln_load(const char *));
void*
dln_load(const char *file)