1bdc32f970
Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: $ nix build --impure --expr 'with import ./. {}; ocaml-ng.ocamlPackages_4_00_1.ocaml.overrideAttrs (oa: { NIX_CFLAGS_COMPILE = (["-fno-common"] ++ [oa.NIX_CFLAGS_COMPILE or ""]); })' ... > ld: libcamlrun.a(startup.o):(.bss+0x800): multiple definition of `caml_code_fragments_table'; libcamlrun.a(backtrace.o):(.bss+0x20): first defined here > collect2: error: ld returned 1 exit status
21 lines
778 B
Nix
21 lines
778 B
Nix
import ./generic.nix {
|
|
major_version = "4";
|
|
minor_version = "05";
|
|
patch_version = "0";
|
|
sha256 = "1y9fw1ci9pwnbbrr9nwr8cq8vypcxwdf4akvxard3mxl2jx2g984";
|
|
|
|
# If the executable is stipped it does not work
|
|
dontStrip = true;
|
|
|
|
patches = [
|
|
# Compatibility with Glibc 2.34
|
|
{ url = "https://github.com/ocaml/ocaml/commit/50c2d1275e537906ea144bd557fde31e0bf16e5f.patch";
|
|
sha256 = "sha256:0ck9b2dpgg5k2p9ndbgniql24h35pn1bbpxjvk69j715lswzy4mh"; }
|
|
];
|
|
|
|
# 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";
|
|
}
|