Fix forced CPU choice according to current openblas documentation

This commit is contained in:
Michael Raskin 2014-01-05 16:33:07 +04:00
parent 139f8949e6
commit 4dad238bab

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
cpu = builtins.head (stdenv.lib.splitString "-" stdenv.system);
target = if cpu == "i686" then "P6" else
target = if cpu == "i686" then "P2" else
if cpu == "x86_64" then "CORE2" else
# allow autodetect
"";