seabios: disable PIE hardening (#370618)

Co-authored-by: SigmaSquadron <alpha@sigmasquadron.net>
This commit is contained in:
nixpkgs-merge-bot[bot]
2025-01-05 04:49:47 +00:00
committed by GitHub
co-authored by SigmaSquadron
+1
View File
@@ -61,6 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
hardeningDisable = [
"fortify"
"pic"
"pie" # ld: warning: creating DT_TEXTREL in a PIE (and more)
"stackprotector"
];