forked from mirrors/nixpkgs
fpc: fix build on aarch64
glibc 2.34 broke it; apply an unreleased patch from upstream
This commit is contained in:
parent
486992aca7
commit
da2f2d49a6
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, gawk }:
|
||||
{ lib, stdenv, fetchurl, gawk, fetchpatch }:
|
||||
|
||||
let startFPC = import ./binary.nix { inherit stdenv fetchurl; }; in
|
||||
|
||||
|
@ -17,7 +17,14 @@ stdenv.mkDerivation rec {
|
|||
# Patch paths for linux systems. Other platforms will need their own patches.
|
||||
patches = [
|
||||
./mark-paths.patch # mark paths for later substitution in postPatch
|
||||
];
|
||||
] ++ lib.optional stdenv.isAarch64 (fetchpatch {
|
||||
# backport upstream patch for aarch64 glibc 2.34
|
||||
url = "https://gitlab.com/freepascal.org/fpc/source/-/commit/a20a7e3497bccf3415bf47ccc55f133eb9d6d6a0.patch";
|
||||
hash = "sha256-xKTBwuOxOwX9KCazQbBNLhMXCqkuJgIFvlXewHY63GM=";
|
||||
stripLen = 1;
|
||||
extraPrefix = "fpcsrc/";
|
||||
});
|
||||
|
||||
postPatch = ''
|
||||
# substitute the markers set by the mark-paths patch
|
||||
substituteInPlace fpcsrc/compiler/systems/t_linux.pas --subst-var-by dynlinker-prefix "${glibc}"
|
||||
|
|
Loading…
Reference in a new issue