1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021-2024 OCamlPro *)
(* Written by the Owi programmers *)

open Syntax

let cmd_one ~unsafe ~optimize file =
  let ext = Fpath.get_ext file in
  match ext with
  | ".wat" ->
    let* modul = Parse.Text.Module.from_file file in
    Binary_encoder.convert file ~unsafe ~optimize modul
  | ext -> Error (`Unsupported_file_extension ext)

let cmd profiling debug unsafe optimize files =
  if profiling then Log.profiling_on := true;
  if debug then Log.debug_on := true;
  list_iter (cmd_one ~unsafe ~optimize) files