8000 Rename gc/gc_impl.c to gc/default.c · ruby/ruby@3368d9e · GitHub
[go: up one dir, main page]

Skip to content
< 8000 script crossorigin="anonymous" type="application/javascript" src="https://github.githubassets.com/assets/sessions-eed3aa0554dd.js" defer="defer">

Commit 3368d9e

Browse files
committed
Rename gc/gc_impl.c to gc/default.c
Changing the name makes it clear that this is the default GC in Ruby.
1 parent 59b8d20 commit 3368d9e

File tree

4 files changed

+191
-191
lines changed

4 files changed

+191
-191
lines changed

.github/workflows/compilers.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ jobs:
211211
- { name: UNIVERSAL_PARSER, env: { cppflags: '-DUNIVERSAL_PARSER' } }
212212
- name: SHARED_GC
213213
shared_gc: true
214-
shared_gc_dir: '../gc'
214+
shared_gc_dir: '$HOME/ruby_gc'
215215
env:
216-
append_configure: '--with-shared-gc=../gc'
216+
append_configure: '--with-shared-gc=$HOME/ruby_gc'
217217

218218
name: ${{ matrix.entry.name }}
219219

@@ -263,9 +263,9 @@ jobs:
263263
264264
- name: Build shared GC
265265
run: >
266-
echo "RUBY_GC_LIBRARY=librubygc.gc_impl.so" >> $GITHUB_ENV &&
266+
echo "RUBY_GC_LIBRARY=librubygc.default.so" >> $GITHUB_ENV &&
267267
mkdir ${{ matrix.entry.shared_gc_dir }} &&
268-
make shared-gc SHARED_GC=gc_impl
268+
make shared-gc SHARED_GC=default
269269
if: ${{ matrix.entry.shared_gc }}
270270

271271
- name: Add to ext/Setup

0 commit comments

Comments
 (0)
0