gnat: turn off some hardening

This commit is contained in:
Robin Gloster 2016-02-12 01:16:19 +00:00
parent dcc046f5c7
commit 7f4f7fbb93

View File

@ -135,6 +135,10 @@ stdenv.mkDerivation ({
};
hardening_format = false;
hardening_relro = name != "gnat";
hardening_bindnow = name != "gnat";
hardening_stackprotector = name != "gnat";
hardening_strictoverflow = name != "gnat";
patches =
[ ]
@ -209,7 +213,7 @@ stdenv.mkDerivation ({
nativeBuildInputs = [ texinfo which ]
++ optional (perl != null) perl;
buildInputs = [ gmp mpfr libmpc libelf gettext ]
++ (optional (ppl != null) ppl)
++ (optional (cloogppl != null) cloogppl)