diff options
author | Peter Zhu <[email protected]> | 2024-12-04 14:29:47 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-12-05 10:33:26 -0500 |
commit | ce1ad1b816f912d0750669c57211d72ea723e28d (patch) | |
tree | 4e9a68feb302cfa5790a96ea8c551873ff1d36e5 /template | |
parent | 26ab20fec1d8ca7c168e8537383a0d8274a7d273 (diff) |
Standardize on the name "modular GC"
We have name fragmentation for this feature, including "shared GC",
"modular GC", and "external GC". This commit standardizes the feature
name to "modular GC" and the implementation to "GC library".
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12261
Diffstat (limited to 'template')
-rw-r--r-- | template/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/Makefile.in b/template/Makefile.in index 78ebe8a338..ca7c551830 100644 --- a/template/Makefile.in +++ b/template/Makefile.in @@ -68,7 +68,7 @@ UNIVERSAL_ARCHNAMES = @UNIVERSAL_ARCHNAMES@ BUILTIN_BINARY = @X_BUILTIN_BINARY@ BUILTIN_GC = default -shared_gc_dir = @shared_gc_dir@ +modular_gc_dir = @modular_gc_dir@ TESTUI = console TESTS = @@ -348,13 +348,13 @@ $(ruby_pc): config.status Makefile $(Q)pkg_config=${PKG_CONFIG} && PKG_CONFIG_PATH=. $${pkg_config:-:} --print-errors ruby.tmp $(Q)$(MV) -f ruby.tmp.pc $(ruby_pc) -shared-gc-precheck: - $(Q) if test -z $(shared_gc_dir); then \ - echo "You must configure with --with-shared-gc to use shared GC"; \ +modular-gc-precheck: + $(Q) if test -z $(modular_gc_dir); then \ + echo "You must configure with --with-modular-gc to use modular GC"; \ exit 1; \ fi - $(Q) if test -z $(SHARED_GC); then \ - echo "You must specify SHARED_GC with the GC to build"; \ + $(Q) if test -z $(MODULAR_GC); then \ + echo "You must specify MODULAR_GC with the GC to build"; \ exit 1; \ fi |