1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

tool/rbinstall.rb: instal ruby.wasm produced by Emscripten

This commit is contained in:
Yuta Saito 2021-12-29 06:33:03 +00:00 committed by Yusuke Endoh
parent 2db7952e59
commit e554b17c60
Notes: git 2022-01-06 18:14:54 +09:00

View file

@ -376,6 +376,11 @@ install?(:local, :arch, :bin, :'bin-arch') do
if rubyw_install_name and !rubyw_install_name.empty?
install rubyw_install_name+exeext, bindir, :mode => $prog_mode, :strip => $strip
end
# emcc produces ruby and ruby.wasm, the first is a JavaScript file of runtime support
# to load and execute the second .wasm file. Both are required to execute ruby
if RUBY_PLATFORM =~ /emscripten/ and File.exist? ruby_install_name+".wasm"
install ruby_install_name+".wasm", bindir, :mode => $prog_mode, :strip => $strip
end
if File.exist? goruby_install_name+exeext
install goruby_install_name+exeext, bindir, :mode => $prog_mode, :strip => $strip
end