mirror of https://gitee.com/bigwinds/arangodb
add more version information
This commit is contained in:
parent
9fcc5d043b
commit
145e6598b9
|
@ -52,7 +52,7 @@ void Version::initialize() {
|
|||
}
|
||||
|
||||
Values["architecture"] = (sizeof(void*) == 4 ? "32" : "64") + std::string("bit");
|
||||
Values["assembler-crc32"] = (ENABLE_ASM_CRC32) ? "true" : "false";
|
||||
Values["asm-crc32"] = (ENABLE_ASM_CRC32) ? "true" : "false";
|
||||
Values["boost-version"] = getBoostVersion();
|
||||
Values["build-date"] = getBuildDate();
|
||||
Values["fd-setsize"] = arangodb::basics::StringUtils::itoa(FD_SETSIZE);
|
||||
|
@ -68,9 +68,9 @@ void Version::initialize() {
|
|||
Values["zlib-version"] = getZLibVersion();
|
||||
|
||||
#if defined(__SSE4_2__) && !defined(NO_SSE42)
|
||||
Values["sse4_2"] = "true";
|
||||
Values["sse42"] = "true";
|
||||
#else
|
||||
Values["sse4_2"] = "true";
|
||||
Values["sse42"] = "false";
|
||||
#endif
|
||||
|
||||
#ifdef ARANGODB_ENABLE_MAINTAINER_MODE
|
||||
|
|
Loading…
Reference in New Issue