lol

Merge pull request #189767 from tjni/openmpi-stackprotector

openmpi: reenable stackprotector on aarch64-darwin

authored by

markuskowa and committed by
GitHub
2b63741b 3c0c2a1b

-10
-10
pkgs/development/libraries/openmpi/default.nix
··· 73 73 74 74 enableParallelBuilding = true; 75 75 76 - # disable stackprotector on aarch64-darwin for now 77 - # https://github.com/NixOS/nixpkgs/issues/127608 78 - # 79 - # build error: 80 - # 81 - # /private/tmp/nix-build-openmpi-4.1.1.drv-0/ccg7QqR8.s:13:15: error: index must be an integer in range [-256, 255]. 82 - # ldr x2, [x2, ___stack_chk_guard];momd 83 - # 84 - hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; 85 - 86 76 postInstall = '' 87 77 rm -f $out/lib/*.la 88 78 '';