commit: 4ba5eb5dcc7a2c6ba462725349b35932f0d9fc42
Author: gienah <gienah <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 6 17:02:52 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Sep 27 11:39:25 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4ba5eb5d
openblas-0.2.11 requires the cpuid_x86 patch
---
.../openblas/files/openblas-9999-cpuid_x86.patch | 27 ----------------------
1 file changed, 27 deletions(-)
diff --git a/sci-libs/openblas/files/openblas-9999-cpuid_x86.patch
b/sci-libs/openblas/files/openblas-9999-cpuid_x86.patch
deleted file mode 100644
index c6f2991..0000000
--- a/sci-libs/openblas/files/openblas-9999-cpuid_x86.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- openblas-9999-orig/cpuid_x86.c 2014-02-23 15:25:22.199394761 +1100
-+++ openblas-9999/cpuid_x86.c 2014-02-23 16:41:02.727372869 +1100
-@@ -57,9 +57,23 @@
- void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx);
- #else
- static inline void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx){
-+#if __x86_64
- __asm__ __volatile__
- ("cpuid": "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx) : "a" (op) :
"cc");
--
-+#else
-+ __asm volatile(
-+ "push %%ebx\n\t"
-+ "cpuid\n\t"
-+ "mov %%ebx, (%4)\n\t"
-+ "pop %%ebx"
-+ :"=a" (*eax),
-+ "=c" (*ecx),
-+ "=d" (*edx)
-+ :"a" (op),
-+ "cc"
-+ "S" (ebx)
-+ :"memory");
-+#endif
- }
- #endif
-