[Feature #19442] Remove USE_RINCGC flag
Ruby doesn't compile when this is set to 0. Let's remove it.
This commit is contained in:
parent
0b303c6830
commit
b3a271665b
Notes:
git
2023-03-16 09:32:30 +00:00
1
.github/workflows/compilers.yml
vendored
1
.github/workflows/compilers.yml
vendored
@ -165,7 +165,6 @@ jobs:
|
|||||||
- { name: USE_FLONUM=0, env: { cppflags: '-DUSE_FLONUM=0' } }
|
- { name: USE_FLONUM=0, env: { cppflags: '-DUSE_FLONUM=0' } }
|
||||||
# - { name: USE_GC_MALLOC_OBJ_INFO_DETAILS, env: { cppflags: '-DUSE_GC_MALLOC_OBJ_INFO_DETAILS' } }
|
# - { name: USE_GC_MALLOC_OBJ_INFO_DETAILS, env: { cppflags: '-DUSE_GC_MALLOC_OBJ_INFO_DETAILS' } }
|
||||||
- { name: USE_LAZY_LOAD, env: { cppflags: '-DUSE_LAZY_LOAD' } }
|
- { name: USE_LAZY_LOAD, env: { cppflags: '-DUSE_LAZY_LOAD' } }
|
||||||
# - { name: USE_RINCGC=0, env: { cppflags: '-DUSE_RINCGC=0' } }
|
|
||||||
# - { name: USE_SYMBOL_GC=0, env: { cppflags: '-DUSE_SYMBOL_GC=0' } }
|
# - { name: USE_SYMBOL_GC=0, env: { cppflags: '-DUSE_SYMBOL_GC=0' } }
|
||||||
# - { name: USE_THREAD_CACHE=0, env: { cppflags: '-DUSE_THREAD_CACHE=0' } }
|
# - { name: USE_THREAD_CACHE=0, env: { cppflags: '-DUSE_THREAD_CACHE=0' } }
|
||||||
# - { name: USE_TRANSIENT_HEAP=0, env: { cppflags: '-DUSE_TRANSIENT_HEAP=0' } }
|
# - { name: USE_TRANSIENT_HEAP=0, env: { cppflags: '-DUSE_TRANSIENT_HEAP=0' } }
|
||||||
|
2
gc.c
2
gc.c
@ -470,7 +470,7 @@ int ruby_rgengc_debug;
|
|||||||
#define GC_PROFILE_DETAIL_MEMORY 0
|
#define GC_PROFILE_DETAIL_MEMORY 0
|
||||||
#endif
|
#endif
|
||||||
#ifndef GC_ENABLE_INCREMENTAL_MARK
|
#ifndef GC_ENABLE_INCREMENTAL_MARK
|
||||||
#define GC_ENABLE_INCREMENTAL_MARK USE_RINCGC
|
#define GC_ENABLE_INCREMENTAL_MARK 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef GC_ENABLE_LAZY_SWEEP
|
#ifndef GC_ENABLE_LAZY_SWEEP
|
||||||
#define GC_ENABLE_LAZY_SWEEP 1
|
#define GC_ENABLE_LAZY_SWEEP 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user