Merge pull request #1939 from TiborGY/patch-2
Fix typo in UNKNOWN core name
This commit is contained in:
commit
a6787b0f81
2
Makefile
2
Makefile
|
@ -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)
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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"
|
||||||
};
|
};
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -1649,7 +1649,7 @@ static char *lowercpuname[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *corename[] = {
|
static char *corename[] = {
|
||||||
"UNKOWN",
|
"UNKNOWN",
|
||||||
"80486",
|
"80486",
|
||||||
"P5",
|
"P5",
|
||||||
"P6",
|
"P6",
|
||||||
|
|
Loading…
Reference in New Issue