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 0467534 commit eb456e6Copy full SHA for eb456e6
lib/ruby_wasm/packager/core.rb
@@ -274,8 +274,10 @@ def target
274
275
def derive_build
276
return @build if @build
277
- __skip__ =
278
- build ||= RubyWasm::Build.new(name, **@packager.full_build_options, target: target)
+ __skip__ = build ||= RubyWasm::Build.new(
+ name, **@packager.full_build_options, target: target,
279
+ wasi_vfs: @packager.features.support_component_model? ? nil : :default
280
+ )
281
build.crossruby.user_exts = user_exts(build)
282
# Emscripten uses --global-base=1024 by default, but it conflicts with
283
# --stack-first and -z stack-size since global-base 1024 is smaller than
0 commit comments