Merge pull request #161451 from johnbcoughlin/petsc-disable-hardening

Disable stackprotector on aarch64-darwin for PETSc
This commit is contained in:
Pavol Rusnak 2022-02-23 10:38:01 +01:00 committed by GitHub
commit 14780ccf6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,6 +67,11 @@ stdenv.mkDerivation rec {
configureScript = "python ./configure";
# disable stackprotector on aarch64-darwin for now
# https://github.com/NixOS/nixpkgs/issues/158730
# see https://github.com/NixOS/nixpkgs/issues/127608 for a similar issue
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
enableParallelBuilding = true;
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;