Enable DEBUG_LOG feature on USE_RUBY_DEBUG_LOG

`ruby_set_debug_option` is needed for `RUBY_DEBUG_LOG` feature
so it should be called when `USE_RUBY_DEBUG_LOG` is true.
This commit is contained in:
Koichi Sasada 2023-03-01 17:07:50 +09:00
Родитель 40e5ee64f0
Коммит 0d415a322f
1 изменённых файлов: 2 добавлений и 1 удалений

3
main.c
Просмотреть файл

@ -23,6 +23,7 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#if defined RUBY_DEVEL && !defined RUBY_DEBUG_ENV
# define RUBY_DEBUG_ENV 1
#endif
@ -46,7 +47,7 @@ int rb_wasm_rt_start(int (main)(int argc, char **argv), int argc, char **argv);
int
main(int argc, char **argv)
{
#ifdef RUBY_DEBUG_ENV
#if defined(RUBY_DEBUG_ENV) || USE_RUBY_DEBUG_LOG
ruby_set_debug_option(getenv("RUBY_DEBUG"));
#endif
#ifdef HAVE_LOCALE_H