فهرست منبع

Added OS Platform (cpu architecture) detection support to windows systems

Zach Mullen 16 سال پیش
والد
کامیت
8fe2738096
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      Source/kwsys/SystemInformation.cxx

+ 6 - 0
Source/kwsys/SystemInformation.cxx

@@ -3358,6 +3358,12 @@ bool SystemInformationImplementation::QueryOSInformation()
     WSACleanup( );
     }
   this->Hostname = name;
+  
+  const char* arch = getenv("PROCESSOR_ARCHITECTURE");
+  if(arch)
+    {
+    this->OSPlatform = arch;
+    }
 
 #else