seabios: disable PIE hardening

This commit is contained in:
FliegendeWurst
2025-01-03 15:21:27 +01:00
parent f28864e00d
commit 739b2ababc
+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"
];