Oh, I removed -fPIC in my last atlas commit. I didn't mean to.

svn path=/nixpkgs/trunk/; revision=33790
This commit is contained in:
Lluís Batlle i Rossell 2012-04-15 07:58:58 +00:00
parent 30d7a7fbe1
commit 023cd3b7bd

View File

@ -30,7 +30,7 @@ stdenv.mkDerivation {
# -V 192 = SSE1|SSE2 (Or it takes SSE3 somehow in my machine without SSE3) # -V 192 = SSE1|SSE2 (Or it takes SSE3 somehow in my machine without SSE3)
# -V 0 = No SIMD (Pentium II does not have any SSE) # -V 0 = No SIMD (Pentium II does not have any SSE)
# -t 0 = No threading # -t 0 = No threading
configureFlags = "-t 0" configureFlags = "-Fa alg fPIC -t 0"
+ optionalString stdenv.isi686 " -b 32 -A 18 -V 0" + optionalString stdenv.isi686 " -b 32 -A 18 -V 0"
+ optionalString stdenv.isx86_64 " -A 31 -V 192" + optionalString stdenv.isx86_64 " -A 31 -V 192"
+ optionalString tolerateCpuTimingInaccuracy " -Si cputhrchk 0" + optionalString tolerateCpuTimingInaccuracy " -Si cputhrchk 0"