This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
compilation/flap/src/elf/elfInitialization.ml
2023-10-04 15:40:22 +02:00

7 lines
219 B
OCaml

open Optimizers
(** Register some compilers that have ELF as a target or source language. *)
let initialize () =
Languages.register (module Elf);
Compilers.register (optimizing_compiler (module X86_64toElf));
()