Skip to content

Remove unused dep_tasks ivar #249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lib/ruby_wasm/build_system/product/crossruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def initialize(
@baseruby = baseruby
@source = source
@toolchain = toolchain
@dep_tasks = []
@user_exts = user_exts
@wasmoptflags = []
@cppflags = []
Expand Down Expand Up @@ -144,7 +143,6 @@ def build(remake: false, reconfigure: false)
FileUtils.mkdir_p build_dir
@toolchain.install
[@source, @baseruby, @libyaml, @zlib, @openssl, @wasi_vfs].each(&:build)
dep_tasks.each(&:invoke)
configure(reconfigure: reconfigure)
build_exts

Expand Down Expand Up @@ -228,10 +226,6 @@ def baseruby_path
File.join(@baseruby.install_dir, "bin/ruby")
end

def dep_tasks
@dep_tasks
end

def configure_args(build_triple, toolchain)
target = @params.target
default_exts = @params.default_exts
Expand Down