diff options
author | Brad King <brad.king@kitware.com> | 2022-03-02 12:25:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-02 12:25:28 (GMT) |
commit | 17b4fa5dab019c1ddf17627f44077dc3d44055f5 (patch) | |
tree | 6262d335644439ffc63b55becda2cfa57a970b61 /Source/kwsys | |
parent | 0a4da33f8c882200d705bfcfa16e88f9de47ce04 (diff) | |
parent | 9deb2d60137200773a68bee933f677809646df69 (diff) | |
download | CMake-17b4fa5dab019c1ddf17627f44077dc3d44055f5.zip CMake-17b4fa5dab019c1ddf17627f44077dc3d44055f5.tar.gz CMake-17b4fa5dab019c1ddf17627f44077dc3d44055f5.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2022-03-02 (d3bbb6b7)
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/SystemInformation.cxx | 6 |
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; |