2019-08-13 21:52:01 +00:00
|
|
|
import ./generic.nix {
|
2016-07-13 12:52:50 +00:00
|
|
|
major_version = "4";
|
|
|
|
minor_version = "01";
|
|
|
|
patch_version = "0";
|
2022-04-05 18:53:07 +00:00
|
|
|
patches = [
|
|
|
|
./fix-clang-build-on-osx.diff
|
|
|
|
|
|
|
|
# Compatibility with Glibc 2.34
|
|
|
|
{ url = "https://github.com/ocaml/ocaml/commit/d111407bf4ff71171598d30825c8e59ed5f75fd6.patch";
|
|
|
|
sha256 = "sha256:08mpy7lsiwv8m5qrqc4xzyiv2hri5713gz2qs1nfz02hz1bd79mc"; }
|
|
|
|
];
|
2016-07-13 12:52:50 +00:00
|
|
|
sha256 = "03d7ida94s1gpr3gadf4jyhmh5rrszd5s4m4z59daaib25rvfyv7";
|
2022-05-28 12:35:49 +00:00
|
|
|
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
|
|
# gcc-10. Otherwise build fails as:
|
|
|
|
# ld: libcamlrun.a(startup.o):(.bss+0x800): multiple definition of
|
|
|
|
# `caml_code_fragments_table'; libcamlrun.a(backtrace.o):(.bss+0x20): first defined here
|
|
|
|
NIX_CFLAGS_COMPILE = "-fcommon";
|
2013-10-12 10:03:14 +00:00
|
|
|
}
|