Merge pull request #279685 from ashkitten/fix-djgpp

djgpp: disable strip phase
This commit is contained in:
Nick Cao 2024-01-10 10:29:24 -05:00 committed by GitHub
commit cf70571baf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,6 +58,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
# stripping breaks static libs, causing this when you attempt to compile a binary:
# error adding symbols: Archive has no index; run ranlib to add one
dontStrip = true;
buildPhase = ''
runHook preBuild
mkdir download; pushd download