python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / compilers / ocaml / 4.01.0.nix
blob801e12d1549b9149d20d054c2e20744dde1a7064
1 import ./generic.nix {
2   major_version = "4";
3   minor_version = "01";
4   patch_version = "0";
5   patches = [
6     ./fix-clang-build-on-osx.diff
8     # Compatibility with Glibc 2.34
9     { url = "https://github.com/ocaml/ocaml/commit/d111407bf4ff71171598d30825c8e59ed5f75fd6.patch";
10       sha256 = "sha256:08mpy7lsiwv8m5qrqc4xzyiv2hri5713gz2qs1nfz02hz1bd79mc"; }
11   ];
12   sha256 = "03d7ida94s1gpr3gadf4jyhmh5rrszd5s4m4z59daaib25rvfyv7";
14   # Workaround build failure on -fno-common toolchains like upstream
15   # gcc-10. Otherwise build fails as:
16   #   ld: libcamlrun.a(startup.o):(.bss+0x800): multiple definition of
17   #     `caml_code_fragments_table'; libcamlrun.a(backtrace.o):(.bss+0x20): first defined here
18   NIX_CFLAGS_COMPILE = "-fcommon";