summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKWSys Upstream <kwrobot@kitware.com>2022-03-02 12:24:42 (GMT)
committerBrad King <brad.king@kitware.com>2022-03-02 12:25:28 (GMT)
commit9deb2d60137200773a68bee933f677809646df69 (patch)
treeb2e803e52286a25fa827e49878f6864fc1e66682
parent8d9ced350d43d0925648a73a9435b1a59ec51e5a (diff)
downloadCMake-9deb2d60137200773a68bee933f677809646df69.zip
CMake-9deb2d60137200773a68bee933f677809646df69.tar.gz
CMake-9deb2d60137200773a68bee933f677809646df69.tar.bz2
KWSys 2022-03-02 (d3bbb6b7)
Code extracted from: https://gitlab.kitware.com/utils/kwsys.git at commit d3bbb6b77cbd21d9a3bf8db9bdf2ad465d99feab (master). Upstream Shortlog ----------------- Joker-Van (1): dfec20c9 SystemInformation: Add Zhaoxin x86 processor kh40000
-rw-r--r--SystemInformation.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/SystemInformation.cxx b/SystemInformation.cxx
index dcbf367..e6cc48f 100644
--- a/SystemInformation.cxx
+++ b/SystemInformation.cxx
@@ -3262,6 +3262,9 @@ bool SystemInformationImplementation::RetrieveClassicalCPUIdentity()
case 0x3b:
this->ChipID.ProcessorName = "Zhaoxin kx6000";
break;
+ case 0x5b:
+ this->ChipID.ProcessorName = "Zhaoxin kh40000";
+ break;
default:
this->ChipID.ProcessorName =
"Unknown IDT\\Centaur\\VIA\\Zhaoxin family";
@@ -3295,6 +3298,9 @@ bool SystemInformationImplementation::RetrieveClassicalCPUIdentity()
case 0x3b:
this->ChipID.ProcessorName = "Zhaoxin kx6000";
break;
+ case 0x5b:
+ this->ChipID.ProcessorName = "Zhaoxin kh40000";
+ break;
default:
this->ChipID.ProcessorName = "Unknown Zhaoxin family";
return false;