lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

atlas: Fix hardening

+2 -1
+2 -1
pkgs/development/libraries/science/math/atlas/default.nix
··· 66 66 patches = optional tolerateCpuTimingInaccuracy ./disable-timing-accuracy-check.patch 67 67 ++ optional stdenv.isDarwin ./tmpdir.patch; 68 68 69 + hardeningDisable = [ "format" ]; 70 + 69 71 # Configure outside of the source directory. 70 72 preConfigure = '' 71 73 mkdir build ··· 76 78 # * -t 0 disables use of multi-threading. It's not quite clear what the 77 79 # consequences of that setting are and whether it's necessary or not. 78 80 configureFlags = [ 79 - "-Fa alg" 80 81 "-t ${threads}" 81 82 cpuConfig 82 83 ] ++ optional shared "--shared"