mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
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:
parent
392b811baf
commit
f64c97418b
4 changed files with 23 additions and 2 deletions
6
dmydln.c
6
dmydln.c
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue