Browse Source
Merge pull request #1939 from TiborGY/patch-2
Fix typo in UNKNOWN core name
tags/v0.3.5
Martin Kroeker
GitHub
6 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
5 additions and
5 deletions
-
Makefile
-
cpuid_arm.c
-
cpuid_mips.c
-
cpuid_mips64.c
-
cpuid_x86.c
|
|
@@ -131,7 +131,7 @@ endif |
|
|
|
endif |
|
|
|
|
|
|
|
libs : |
|
|
|
ifeq ($(CORE), UNKOWN) |
|
|
|
ifeq ($(CORE), UNKNOWN) |
|
|
|
$(error OpenBLAS: Detecting CPU failed. Please set TARGET explicitly, e.g. make TARGET=your_cpu_target. Please read README for the detail.) |
|
|
|
endif |
|
|
|
ifeq ($(NOFORTRAN), 1) |
|
|
|
|
|
@@ -34,7 +34,7 @@ |
|
|
|
#define CPU_CORTEXA15 4 |
|
|
|
|
|
|
|
static char *cpuname[] = { |
|
|
|
"UNKOWN", |
|
|
|
"UNKNOWN", |
|
|
|
"ARMV6", |
|
|
|
"ARMV7", |
|
|
|
"CORTEXA9", |
|
|
|
|
|
@@ -75,7 +75,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
#define CPU_1004K 2 |
|
|
|
|
|
|
|
static char *cpuname[] = { |
|
|
|
"UNKOWN", |
|
|
|
"UNKNOWN", |
|
|
|
"P5600", |
|
|
|
"1004K" |
|
|
|
}; |
|
|
|
|
|
@@ -79,7 +79,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
#define CPU_I6500 6 |
|
|
|
|
|
|
|
static char *cpuname[] = { |
|
|
|
"UNKOWN", |
|
|
|
"UNKNOWN", |
|
|
|
"SICORTEX", |
|
|
|
"LOONGSON3A", |
|
|
|
"LOONGSON3B", |
|
|
|
|
|
@@ -1649,7 +1649,7 @@ static char *lowercpuname[] = { |
|
|
|
}; |
|
|
|
|
|
|
|
static char *corename[] = { |
|
|
|
"UNKOWN", |
|
|
|
"UNKNOWN", |
|
|
|
"80486", |
|
|
|
"P5", |
|
|
|
"P6", |
|
|
|