spidermonkey.i686-linux: turn off stackprotector hardening

This commit is contained in:
Robin Gloster 2016-04-03 11:49:13 +00:00
parent 3437b52e6b
commit f3f9145d23

View File

@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4";
};
hardeningDisable = [ "format" ];
hardeningDisable = [ "format" ]
++ stdenv.lib.optional stdenv.isi686 "stackprotector";
buildInputs = [ readline ];