Skip to content
Open
Show file tree
Hide file tree
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: 6 additions & 0 deletions .git-third-party/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Managed by git-third-party.

# Patch names are a digest of the patch bytes: normalizing them changes what
# gets applied, and breaks the name.
patches/** -text
manifest.json text eol=lf
5 changes: 5 additions & 0 deletions .git-third-party/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Managed by git-third-party.

# Scratch left behind by an interrupted write.
*.tmp
patches/**/*.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@
"executor/third-party/wasmtime": {
"url": "https://github.com/bytecodealliance/wasmtime.git",
"commit": "6844a83b530f86ad13a65175282fe2dbcd33cad1",
"patches": 2,
"patches": [
"41ma00mnkw1fck5s",
"1rntcejzarfn1yww"
],
"submodules": []
},
"executor/third-party/wasm-tools": {
"url": "https://github.com/bytecodealliance/wasm-tools.git",
"commit": "76927bf4bdbddf4b15f835c5eddfffbdfe3bdbd5",
"patches": 1
"patches": [
"gk2m1xpfybm4kec2"
]
}
}
}
2 changes: 1 addition & 1 deletion executor/src/rt/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl UnwrapDynError {
/// independent of the wasm store and can be done even after it is consumed.
pub fn extract_backtrace(err: &UnwrapDynError) -> Option<Backtrace> {
let Some(bt) = err.downcast_ref::<wasmtime::WasmBacktrace>() else {
log_warn!("no backtrace attached");
log_debug!("no backtrace attached");
return None;
};

Expand Down
1 change: 0 additions & 1 deletion executor/src/rt/supervisor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ pub fn create_engines(
.wasm_features(WasmFeatures::SIGN_EXTENSION, true)
.wasm_features(WasmFeatures::MUTABLE_GLOBAL, true)
.wasm_features(WasmFeatures::MULTI_VALUE, true)
.wasm_features(WasmFeatures::SATURATING_FLOAT_TO_INT, false)
//.wasm_features(WasmFeatures::REFERENCE_TYPES, false)
.wasm_features(WasmFeatures::SATURATING_FLOAT_TO_INT, true);

Expand Down