ruby/internal/config.h needs to be included first

to define USE_MJIT.
This commit is contained in:
Takashi Kokubun 2020-11-22 21:02:01 -08:00
Родитель 0a2b987696
Коммит 2700df3c9d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
3 изменённых файлов: 4 добавлений и 3 удалений

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

@ -11,9 +11,10 @@
// To share variables privately, include mjit_worker.c instead of linking.
#include "ruby/internal/config.h" // defines USE_MJIT
#if USE_MJIT
#include "ruby/internal/config.h"
#include "constant.h"
#include "id_table.h"
#include "internal.h"

2
mjit.h
Просмотреть файл

@ -8,7 +8,7 @@
**********************************************************************/
#include "ruby/internal/config.h"
#include "ruby/internal/config.h" // defines USE_MJIT
#include "ruby/internal/stdbool.h"
#include "vm_core.h"

Просмотреть файл

@ -10,7 +10,7 @@
// call Ruby methods (C functions that may call rb_funcall) or trigger
// GC (using ZALLOC, xmalloc, xfree, etc.) in this file.
#include "ruby/internal/config.h"
#include "ruby/internal/config.h" // defines USE_MJIT
#if USE_MJIT