at master 942 B view raw
1import ./generic.nix { 2 major_version = "4"; 3 minor_version = "03"; 4 patch_version = "0"; 5 sha256 = "09p3iwwi55r6rbrpyp8f0wmkb0ppcgw67yxw6yfky60524wayp39"; 6 7 patches = [ 8 # Compatibility with Glibc 2.34 9 { 10 url = "https://github.com/ocaml/ocaml/commit/a8b2cc3b40f5269ce8525164ec2a63b35722b22b.patch"; 11 sha256 = "sha256:1rrknmrk86xrj2k3hznnjk1gwnliyqh125zabg1hvy6dlvml9b0x"; 12 } 13 # Compatibility with Binutils 2.29 14 { 15 url = "https://github.com/ocaml/ocaml/commit/c204f07bfb20174f9e1c9ff586fb7b2f42b8bf18.patch"; 16 sha256 = "sha256-AAXyMZ7ujO67SGz+tGXKZkVcINAwvccHlFHmKnUt848="; 17 } 18 ]; 19 20 # Workaround build failure on -fno-common toolchains like upstream 21 # gcc-10. Otherwise build fails as: 22 # ld: libcamlrun.a(startup.o):(.bss+0x800): multiple definition of 23 # `caml_code_fragments_table'; libcamlrun.a(backtrace.o):(.bss+0x20): first defined here 24 env.NIX_CFLAGS_COMPILE = "-fcommon"; 25}