Skip to content

Commit 2bc9b5a

Browse files
committed
tool/update-deps: Skip ZJIT and YJIT+ZJIT build objects
1 parent fb72ff7 commit 2bc9b5a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tool/update-deps

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,8 @@ def read_make_deps(cwd)
326326
deps.delete_if {|dep| /\.time\z/ =~ dep} # skip timestamp
327327
next if /\.o\z/ !~ target.to_s
328328
next if /libyjit.o\z/ =~ target.to_s # skip YJIT Rust object (no corresponding C source)
329+
next if /libzjit.o\z/ =~ target.to_s # skip ZJIT Rust object (no corresponding C source)
330+
next if /target\/release\/libruby.o\z/ =~ target.to_s # skip YJIT+ZJIT Rust object (no corresponding C source)
329331
next if /\.bundle\// =~ target.to_s
330332
next if /\A\./ =~ target.to_s # skip rules such as ".c.o"
331333
#p [curdir, target, deps]

0 commit comments

Comments
 (0)