summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-03-03 16:42:17 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-03-03 16:42:29 (GMT)
commit67fc1d74e3a4c3f31742fcfea77dc25c8ccd016f (patch)
treeb8bee668e001af82c1b2c0e9d3d68163b4a3263d
parent9b628e9ebb406928b42b379f768c6bdfeec618b1 (diff)
parent1b256a6bbf69779d434d1b155321700c40d0bc7b (diff)
downloadCMake-67fc1d74e3a4c3f31742fcfea77dc25c8ccd016f.zip
CMake-67fc1d74e3a4c3f31742fcfea77dc25c8ccd016f.tar.gz
CMake-67fc1d74e3a4c3f31742fcfea77dc25c8ccd016f.tar.bz2
Merge topic 'update-kwsys'
1b256a6bbf Merge branch 'backport-kwsys-SystemInformation-zhaoxin-kh40000' a20ad92022 KWSys: SystemInformation: Add Zhaoxin x86 processor kh40000 17b4fa5dab Merge branch 'upstream-KWSys' into update-kwsys 9deb2d6013 KWSys 2022-03-02 (d3bbb6b7) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7032
-rw-r--r--Source/kwsys/SystemInformation.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/kwsys/SystemInformation.cxx b/Source/kwsys/SystemInformation.cxx
index dcbf367..e6cc48f 100644
--- a/Source/kwsys/SystemInformation.cxx
+++ b/Source/kwsys/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;