We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb72ff7 commit 2bc9b5aCopy full SHA for 2bc9b5a
tool/update-deps
@@ -326,6 +326,8 @@ def read_make_deps(cwd)
326
deps.delete_if {|dep| /\.time\z/ =~ dep} # skip timestamp
327
next if /\.o\z/ !~ target.to_s
328
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)
331
next if /\.bundle\// =~ target.to_s
332
next if /\A\./ =~ target.to_s # skip rules such as ".c.o"
333
#p [curdir, target, deps]
0 commit comments