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 () | |
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: Merged: https://.com/ruby/ruby/pull/12261
-rw-r--r-- | template/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -68,7 +68,7 @@ UNIVERSAL_ARCHNAMES = @UNIVERSAL_ARCHNAMES@ BUILTIN_BINARY = @X_BUILTIN_BINARY@ BUILTIN_GC = default -shared_gc_dir = @shared_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"; \ exit 1; \ fi - $(Q) if test -z $(SHARED_GC); then \ - echo "You must specify SHARED_GC with the GC to build"; \ exit 1; \ fi |