ocaml: default to 4.06 on aarch64 (since 4.05 is broken there)

This commit is contained in:
Vincent Laporte 2018-04-29 05:57:32 +00:00 committed by Vincent Laporte
parent e4997af72b
commit a600e0c8a5

View File

@ -1043,5 +1043,10 @@ in rec
ocamlPackages_latest = ocamlPackages_4_06;
ocamlPackages = ocamlPackages_4_05;
ocamlPackages =
# OCaml 4.05 is broken on aarch64
if system == "aarch64-linux" then
ocamlPackages_4_06
else
ocamlPackages_4_05;
}