Skip to content

Commit 63c9909

Browse files
bdemannyouknowone
authored andcommitted
run the first block if wasmbind is not present
1 parent f1dac50 commit 63c9909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/vm/vm_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ impl VirtualMachine {
1313
#[track_caller]
1414
#[cold]
1515
fn _py_panic_failed(&self, exc: PyBaseExceptionRef, msg: &str) -> ! {
16-
#[cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))]
16+
#[cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"), feature = "wasmbind")))]
1717
{
1818
self.print_exception(exc);
1919
self.flush_std();

0 commit comments

Comments
 (0)