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
|
||||
|
||||
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",
|
||||
|
|
Loading…
Reference in New Issue