I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 48f4c728 authored by zzz's avatar zzz
Browse files

- Remove libjbigi-windows-athlon64.dll which was a duplicate of libjbigi-windows-athlon.dll;

        NBI now tries athlon as a fallback for all 64-bit processors.
parent d9f80e9d
No related branches found
No related tags found
No related merge requests found
...@@ -180,9 +180,6 @@ public class NativeBigInteger extends BigInteger { ...@@ -180,9 +180,6 @@ public class NativeBigInteger extends BigInteger {
} catch (UnknownCPUException e) { } catch (UnknownCPUException e) {
// log? // log?
} }
if (_isFreebsd)
// athlon64 not available for freebsd
return JBIGI_OPTIMIZATION_ATHLON;
return JBIGI_OPTIMIZATION_ATHLON64; return JBIGI_OPTIMIZATION_ATHLON64;
} }
...@@ -614,6 +611,10 @@ public class NativeBigInteger extends BigInteger { ...@@ -614,6 +611,10 @@ public class NativeBigInteger extends BigInteger {
// Add fallbacks for any 32-bit that were added 0.8.7 or later here // Add fallbacks for any 32-bit that were added 0.8.7 or later here
if (primary.equals(JBIGI_OPTIMIZATION_ATOM)) if (primary.equals(JBIGI_OPTIMIZATION_ATOM))
rv.add(_libPrefix + getMiddleName1() + JBIGI_OPTIMIZATION_PENTIUM3 + _libSuffix); rv.add(_libPrefix + getMiddleName1() + JBIGI_OPTIMIZATION_PENTIUM3 + _libSuffix);
// athlon is always a fallback for 64 bit, we have it for all architectures
// and it should be much better than "none"
if (_is64)
rv.add(_libPrefix + getMiddleName1() + JBIGI_OPTIMIZATION_ATHLON + _libSuffix);
} else { } else {
if (_is64) { if (_is64) {
......
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment