Skip to content

Commit

Permalink
chore(octez): update octez version
Browse files Browse the repository at this point in the history
  • Loading branch information
huancheng-trili committed Dec 23, 2024
1 parent 5cb67b8 commit 28e406b
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions nix/patches/0002-allow-floats-in-wasm-rollup.patch
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ index 92ab9996c8..42960b9bd9 100644
~name:"boot.wasm"
~bytes:kernel
in

diff --git a/src/lib_scoru_wasm/wasm_vm.ml b/src/lib_scoru_wasm/wasm_vm.ml
index 62b8ef3104..3cc1efb96f 100644
index fdc50f1f6d..2e71bf0be7 100644
--- a/src/lib_scoru_wasm/wasm_vm.ml
+++ b/src/lib_scoru_wasm/wasm_vm.ml
@@ -220,7 +220,7 @@ let unsafe_next_tick_state ~wasm_entrypoint ~version ~stack_size_limit
Expand All @@ -24,19 +25,21 @@ index 62b8ef3104..3cc1efb96f 100644
kernel
m
in

diff --git a/src/lib_wasm_debugger/wasm_debugger.ml b/src/lib_wasm_debugger/wasm_debugger.ml
index 4a0748f917..612bd3e500 100644
index 4afeb210e9..9671007923 100644
--- a/src/lib_wasm_debugger/wasm_debugger.ml
+++ b/src/lib_wasm_debugger/wasm_debugger.ml
@@ -28,7 +28,7 @@ module Make (Wasm : Wasm_utils_intf.S) = struct
@@ -47,7 +47,7 @@ let read_kernel_from_file kernel_path =

let parse_binary_module name module_ =
let bytes = Tezos_lazy_containers.Chunked_byte_vector.of_string module_ in
- Tezos_webassembly_interpreter.Decode.decode ~allow_floats:false ~name ~bytes
+ Tezos_webassembly_interpreter.Decode.decode ~allow_floats:true ~name ~bytes
let parse_binary_module name module_ =
let bytes = Tezos_lazy_containers.Chunked_byte_vector.of_string module_ in
- Tezos_webassembly_interpreter.Decode.decode ~allow_floats:false ~name ~bytes
+ Tezos_webassembly_interpreter.Decode.decode ~allow_floats:true ~name ~bytes

(* [typecheck_module module_ast] runs the typechecker on the module, which is
not done by the PVM. *)
(* [typecheck_module module_ast] runs the typechecker on the module, which is
not done by the PVM. *)

diff --git a/src/lib_wasmer/api_funcs_desc.ml b/src/lib_wasmer/api_funcs_desc.ml
index 40e1a1612c..8b3f776f2e 100644
--- a/src/lib_wasmer/api_funcs_desc.ml
Expand All @@ -49,11 +52,12 @@ index 40e1a1612c..8b3f776f2e 100644
+ foreign
+ "wasm_config_canonicalize_nans"
+ (ptr Types.Config.t @-> bool @-> returning void)
+
+
+
let delete =
foreign "wasm_config_delete" (ptr Types.Config.t @-> returning void)
end

diff --git a/src/lib_wasmer/config.ml b/src/lib_wasmer/config.ml
index e32b7203bc..8f5fbca586 100644
--- a/src/lib_wasmer/config.ml
Expand Down

0 comments on commit 28e406b

Please sign in to comment.