File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -358,6 +358,8 @@ wasmtime_option_group! {
358
358
pub tail_call: Option <bool >,
359
359
/// Configure support for the threads proposal.
360
360
pub threads: Option <bool >,
361
+ /// Configure support for the shared-everything-threads proposal.
362
+ pub shared_everything_threads: Option <bool >,
361
363
/// Configure support for the memory64 proposal.
362
364
pub memory64: Option <bool >,
363
365
/// Configure support for the component-model proposal.
Original file line number Diff line number Diff line change @@ -299,6 +299,8 @@ impl Config {
299
299
cfg. wasm . simd = Some ( self . module_config . config . simd_enabled ) ;
300
300
cfg. wasm . tail_call = Some ( self . module_config . config . tail_call_enabled ) ;
301
301
cfg. wasm . threads = Some ( self . module_config . config . threads_enabled ) ;
302
+ cfg. wasm . shared_everything_threads =
303
+ Some ( self . module_config . config . shared_everything_threads_enabled ) ;
302
304
cfg. wasm . wide_arithmetic = Some ( self . module_config . config . wide_arithmetic_enabled ) ;
303
305
cfg. wasm . exceptions = Some ( self . module_config . config . exceptions_enabled ) ;
304
306
cfg. wasm . legacy_exceptions = Some ( self . module_config . legacy_exceptions ) ;
You can’t perform that action at this time.
0 commit comments