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
parent
commit
a6787b0f81
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      cpuid_arm.c
  3. +1
    -1
      cpuid_mips.c
  4. +1
    -1
      cpuid_mips64.c
  5. +1
    -1
      cpuid_x86.c

+ 1
- 1
Makefile View File

@@ -131,7 +131,7 @@ endif
endif endif


libs : 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.) $(error OpenBLAS: Detecting CPU failed. Please set TARGET explicitly, e.g. make TARGET=your_cpu_target. Please read README for the detail.)
endif endif
ifeq ($(NOFORTRAN), 1) ifeq ($(NOFORTRAN), 1)


+ 1
- 1
cpuid_arm.c View File

@@ -34,7 +34,7 @@
#define CPU_CORTEXA15 4 #define CPU_CORTEXA15 4


static char *cpuname[] = { static char *cpuname[] = {
"UNKOWN",
"UNKNOWN",
"ARMV6", "ARMV6",
"ARMV7", "ARMV7",
"CORTEXA9", "CORTEXA9",


+ 1
- 1
cpuid_mips.c View File

@@ -75,7 +75,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define CPU_1004K 2 #define CPU_1004K 2


static char *cpuname[] = { static char *cpuname[] = {
"UNKOWN",
"UNKNOWN",
"P5600", "P5600",
"1004K" "1004K"
}; };


+ 1
- 1
cpuid_mips64.c View File

@@ -79,7 +79,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define CPU_I6500 6 #define CPU_I6500 6


static char *cpuname[] = { static char *cpuname[] = {
"UNKOWN",
"UNKNOWN",
"SICORTEX", "SICORTEX",
"LOONGSON3A", "LOONGSON3A",
"LOONGSON3B", "LOONGSON3B",


+ 1
- 1
cpuid_x86.c View File

@@ -1649,7 +1649,7 @@ static char *lowercpuname[] = {
}; };


static char *corename[] = { static char *corename[] = {
"UNKOWN",
"UNKNOWN",
"80486", "80486",
"P5", "P5",
"P6", "P6",


Loading…
Cancel
Save