Skip to content

Commit

Permalink
Magic numbers for cmx and cmxa files.
Browse files Browse the repository at this point in the history
  • Loading branch information
xclerc committed Jul 26, 2021
1 parent bea6617 commit c2fb682
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ocaml/utils/config.mlp
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ and cmi_magic_number = "Caml1999I029"
and cmo_magic_number = "Caml1999O029"
and cma_magic_number = "Caml1999A029"
and cmx_magic_number =
if flambda then
"Caml1999y029"
if flambda || flambda2 then
"Caml2021y029"
else
"Caml1999Y029"
"Caml2021Y029"
and cmxa_magic_number =
if flambda then
"Caml1999z029"
if flambda || flambda2 then
"Caml2021z029"
else
"Caml1999Z029"
"Caml2021Z029"
and ast_impl_magic_number = "Caml1999M029"
and ast_intf_magic_number = "Caml1999N029"
and cmxs_magic_number = "Caml1999D029"
Expand Down

0 comments on commit c2fb682

Please sign in to comment.