Author: viric
Date: Sat Apr 14 18:58:30 2012
New Revision: 33787
URL: https://nixos.org/websvn/nix/?rev=33787&sc=1

Log:
Trying to fix atlas i686. I set Pentium II and having sse/sse2 at the same time 
for i686...

I think Pentium II does not have sse.

Modified:
   nixpkgs/trunk/pkgs/development/libraries/science/math/atlas/default.nix

Modified: 
nixpkgs/trunk/pkgs/development/libraries/science/math/atlas/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/science/math/atlas/default.nix     
Sat Apr 14 18:36:04 2012        (r33786)
+++ nixpkgs/trunk/pkgs/development/libraries/science/math/atlas/default.nix     
Sat Apr 14 18:58:30 2012        (r33787)
@@ -29,9 +29,9 @@
   #     -A 18 = Pentium II
   #     -V 192 = SSE1|SSE2 (Or it takes SSE3 somehow in my machine without 
SSE3)
   #     -t 0 = No threading
-  configureFlags = "-Fa alg -fPIC -t 0 -V 192"
+  configureFlags = "-t 0"
     + optionalString stdenv.isi686 " -b 32 -A 18"
-    + optionalString stdenv.isx86_64 " -A 31"
+    + optionalString stdenv.isx86_64 " -A 31 -V 192"
     + optionalString tolerateCpuTimingInaccuracy " -Si cputhrchk 0"
     + optionalString shared " --shared "
     ;
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to