File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,18 @@ extern "C" {
15
15
16
16
/* Please do not modify these values */
17
17
#if defined(_WIN64 )
18
- static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Win64" ;
18
+ static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Win64" ;
19
19
#elif defined(_WIN32 )
20
- static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Win32" ;
20
+ static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Win32" ;
21
21
#else
22
22
#if defined(__linux )
23
- static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Linux" ;
23
+ #if defined(__LP64__ ) || defined(_LP64 )
24
+ static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Linux x86_64" ;
25
+ #else
26
+ static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Linux x86_32" ;
27
+ #endif
24
28
#else
25
- static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Unknown" ;
29
+ static const wchar_t CLIENT_ENVIRONMENT_VALUE [] = L"Unknown" ;
26
30
#endif
27
31
#endif
28
32
You can’t perform that action at this time.
0 commit comments