The system is: Windows - 10.0.14393 - AMD64 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe Build flags: Id flags: The output was: 0 Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27043 for x64 Copyright (C) Microsoft Corporation. All rights reserved. CMakeCCompilerId.c Microsoft (R) Incremental Linker Version 14.16.27043.0 Copyright (C) Microsoft Corporation. All rights reserved. /out:CMakeCCompilerId.exe CMakeCCompilerId.obj Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.exe" Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.obj" The C compiler identification is MSVC, found in "C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/3.11.0/CompilerIdC/CMakeCCompilerId.exe" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe Build flags: Id flags: The output was: 0 Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27043 for x64 Copyright (C) Microsoft Corporation. All rights reserved. CMakeCXXCompilerId.cpp Microsoft (R) Incremental Linker Version 14.16.27043.0 Copyright (C) Microsoft Corporation. All rights reserved. /out:CMakeCXXCompilerId.exe CMakeCXXCompilerId.obj Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.exe" Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.obj" The CXX compiler identification is MSVC, found in "C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/3.11.0/CompilerIdCXX/CMakeCXXCompilerId.exe" Checking whether the ASM compiler is MSVC using "/?" matched "Microsoft": Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27043 for x64 Copyright (C) Microsoft Corporation. All rights reserved. C/C++ COMPILER OPTIONS -OPTIMIZATION- /O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed) /Ob inline expansion (default n=0) /Od disable optimizations (default) /Og enable global optimization /Oi[-] enable intrinsic functions /Os favor code space /Ot favor code speed /Ox optimizations (favor speed) /favor: select processor to optimize for, one of: blend - a combination of optimizations for several different x64 processors AMD64 - 64-bit AMD processors INTEL64 - Intel(R)64 architecture processors ATOM - Intel(R) Atom(TM) processors -CODE GENERATION- /Gu[-] ensure distinct functions have distinct addresses /Gw[-] separate global variables for linker /GF enable read-only string pooling /Gm[-] enable minimal rebuild /Gy[-] separate functions for linker /GS[-] enable security checks /GR[-] enable C++ RTTI /GX[-] enable C++ EH (same as /EHsc) /guard:cf[-] enable CFG (control flow guard) /EHs enable C++ EH (no SEH exceptions) /EHa enable C++ EH (w/ SEH exceptions) /EHc extern "C" defaults to nothrow /EHr always generate noexcept runtime termination checks /fp: choose floating-point model: except[-] - consider floating-point exceptions when generating code fast - "fast" floating-point model; results are less predictable precise - "precise" floating-point model; results are predictable strict - "strict" floating-point model (implies /fp:except) /Qfast_transcendentals generate inline FP intrinsics even with /fp:except /Qspectre[-] enable mitigations for CVE 2017-5753 /Qpar[-] enable parallel code generation /Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops /Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized /Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops /Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized /GL[-] enable link-time code generation /volatile: choose volatile model: iso - Acquire/release semantics not guaranteed on volatile accesses ms - Acquire/release semantics guaranteed on volatile accesses /GA optimize for Windows Application /Ge force stack checking for all funcs /Gs[num] control stack checking calls /Gh enable _penter function call /GH enable _pexit function call /GT generate fiber-safe TLS accesses /RTC1 Enable fast checks (/RTCsu) /RTCc Convert to smaller type checks /RTCs Stack Frame runtime checking /RTCu Uninitialized local usage checks /clr[:option] compile for common language runtime, where option is: pure - produce IL-only output file (no native executable code) safe - produce IL-only verifiable output file initialAppDomain - enable initial AppDomain behavior of Visual C++ 2002 noAssembly - do not produce an assembly nostdlib - ignore the default \clr directory /homeparams Force parameters passed in registers to be written to the stack /GZ Enable stack checks (/RTCs) /arch:AVX enable use of instructions available with AVX-enabled CPUs /arch:AVX2 enable use of instructions available with AVX2-enabled CPUs /Gv __vectorcall calling convention /Qspectre-load Enable spectre mitigations for all instructions which load memory /Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory -OUTPUT FILES- /Fa[file] name assembly listing file /FA[scu] configure assembly listing /Fd[file] name .PDB file /Fe name executable file /Fm[file] name map file /Fo name object file /Fp name precompiled header file /Fr[file] name source browser file /FR[file] name extended .SBR file /Fi[file] name preprocessed file /Fd: name .PDB file /Fe: name executable file /Fm: name map file /Fo: name object file /Fp: name .PCH file /FR: name extended .SBR file /Fi: name preprocessed file /doc[file] process XML documentation comments and optionally name the .xdc file -PREPROCESSOR- /AI add to assembly search path /FU forced using assembly/module /C don't strip comments /D{=|#} define macro /E preprocess to stdout /EP preprocess to stdout, no #line /P preprocess to file /Fx merge injected code to file /FI name forced include file /U remove predefined macro /u remove all predefined macros /I add to include search path /X ignore "standard places" /PH generate #pragma file_hash when preprocessing -LANGUAGE- /std: C++ standard version c++14 - ISO/IEC 14882:2014 (default) c++17 - ISO/IEC 14882:2017 c++latest - latest draft standard (feature set subject to change) /permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default) /Ze enable extensions (default) /Za disable extensions /ZW enable WinRT language extensions /Zs syntax check only /Zc:arg1[,arg2] C++ language conformance, where arguments can be: forScope[-] enforce Standard C++ for scoping rules wchar_t[-] wchar_t is the native type, not a typedef auto[-] enforce the new Standard C++ meaning for auto trigraphs[-] enable trigraphs (off by default) rvalueCast[-] enforce Standard C++ explicit type conversion rules strictStrings[-] disable string-literal to [char|wchar_t]* conversion (off by default) implicitNoexcept[-] enable implicit noexcept on required functions threadSafeInit[-] enable thread-safe local static initialization inline[-] remove unreferenced function or data if it is COMDAT or has internal linkage only (off by default) sizedDealloc[-] enable C++14 global sized deallocation functions (on by default) throwingNew[-] assume operator new throws on failure (off by default) referenceBinding[-] a temporary will not bind to an non-const lvalue reference (off by default) twoPhase- disable two-phase name lookup ternary[-] enforce C++11 rules for conditional operator (off by default) noexceptTypes[-] enforce C++17 noexcept rules (on by default in C++17 or later) alignedNew[-] enable C++17 alignment of dynamically allocated objects (on by default) /await enable resumable functions extension /constexpr:depth recursion depth limit for constexpr evaluation (default: 512) /constexpr:backtrace show N constexpr evaluations in diagnostics (default: 10) /constexpr:steps terminate constexpr evaluation after N steps (default: 100000) /Zi enable debugging information /Z7 enable old-style debug info /Zo[-] generate richer debugging information for optimized code (on by default) /ZH:SHA_256 use SHA256 for file checksum in debug info (experimental) /Zp[n] pack structs on n-byte boundary /Zl omit default library name in .OBJ /vd{0|1|2} disable/enable vtordisp /vm type of pointers to members /ZI enable Edit and Continue debug info /openmp enable OpenMP 2.0 language extensions -MISCELLANEOUS- @ options response file /?, /help print this help message /bigobj generate extended object format /c compile only, no link /errorReport:option Report internal compiler errors to Microsoft none - do not send report prompt - prompt to immediately send report queue - at next admin logon, prompt to send report (default) send - send report automatically /FC use full pathnames in diagnostics /H max external name length /J default char type is unsigned /MP[n] use up to 'n' processes for compilation /nologo suppress copyright message /showIncludes show include file names /Tc compile file as .c /Tp compile file as .cpp /TC compile all files as .c /TP compile all files as .cpp /V set version string /Yc[file] create .PCH file /Yd put debug info in every .OBJ /Yl[sym] inject .PCH ref for debug lib /Yu[file] use .PCH file /Y- disable all PCH options /Zm max memory alloc (% of default) /FS force to use MSPDBSRV.EXE /source-charset:|.nnnn set source character set /execution-charset:|.nnnn set execution character set /utf-8 set source and execution character set to UTF-8 /validate-charset[-] validate UTF-8 files for only legal characters -LINKING- /LD Create .DLL /LDd Create .DLL debug library /LN Create a .netmodule /F set stack size /link [linker options and libraries] /MD link with MSVCRT.LIB /MT link with LIBCMT.LIB /MDd link with MSVCRTD.LIB debug lib /MTd link with LIBCMTD.LIB debug lib -CODE ANALYSIS- /analyze[-] Enable native analysis /analyze:quiet[-] No warning to console /analyze:log Warnings to file /analyze:autolog Log to *.pftlog /analyze:autolog:ext Log to *./analyze:autolog- No log file /analyze:WX- Warnings not fatal /analyze:stacksize Max stack frame /analyze:max_paths Max paths /analyze:only Analyze, no code gen -DIAGNOSTICS- /diagnostics: controls the format of diagnostic messages: classic - retains prior format column[-] - prints column information caret[-] - prints column and the indicated line of source /Wall enable all warnings /w disable all warnings /W set warning level (default n=1) /Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz /WX treat warnings as errors /WL enable one line diagnostics /wd disable warning n /we treat warning n as an error /wo issue warning n once /w set warning level 1-4 for n /external:I - location of external headers /external:env: - environment variable with locations of external headers /external:anglebrackets - treat all headers included via <> as external /external:W - warning level for external headers /external:templates[-] - evaluate warning level across template instantiation chain /sdl enable additional security features and warnings Determining if the C compiler works passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_94167" [1/2] Building C object CMakeFiles\cmTC_94167.dir\testCCompiler.c.obj [2/2] Linking C executable cmTC_94167.exe Detecting C compiler ABI info compiled with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_4372a" [1/2] Building C object CMakeFiles\cmTC_4372a.dir\CMakeCCompilerABI.c.obj [2/2] Linking C executable cmTC_4372a.exe Determining if the CXX compiler works passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_14352" [1/2] Building CXX object CMakeFiles\cmTC_14352.dir\testCXXCompiler.cxx.obj [2/2] Linking CXX executable cmTC_14352.exe Detecting CXX compiler ABI info compiled with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_d0a2e" [1/2] Building CXX object CMakeFiles\cmTC_d0a2e.dir\CMakeCXXCompilerABI.cpp.obj [2/2] Linking CXX executable cmTC_d0a2e.exe Detecting CXX [] compiler features compiled with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_3bb87" [1/2] Building CXX object CMakeFiles\cmTC_3bb87.dir\feature_tests.cxx.obj [2/2] Linking CXX executable cmTC_3bb87.exe Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers Feature record: CXX_FEATURE:1cxx_alias_templates Feature record: CXX_FEATURE:1cxx_alignas Feature record: CXX_FEATURE:1cxx_alignof Feature record: CXX_FEATURE:1cxx_attributes Feature record: CXX_FEATURE:1cxx_attribute_deprecated Feature record: CXX_FEATURE:1cxx_auto_type Feature record: CXX_FEATURE:1cxx_binary_literals Feature record: CXX_FEATURE:1cxx_constexpr Feature record: CXX_FEATURE:1cxx_contextual_conversions Feature record: CXX_FEATURE:1cxx_decltype Feature record: CXX_FEATURE:1cxx_decltype_auto Feature record: CXX_FEATURE:1cxx_default_function_template_args Feature record: CXX_FEATURE:1cxx_defaulted_functions Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers Feature record: CXX_FEATURE:1cxx_delegating_constructors Feature record: CXX_FEATURE:1cxx_deleted_functions Feature record: CXX_FEATURE:1cxx_digit_separators Feature record: CXX_FEATURE:1cxx_enum_forward_declarations Feature record: CXX_FEATURE:1cxx_explicit_conversions Feature record: CXX_FEATURE:1cxx_extended_friend_declarations Feature record: CXX_FEATURE:1cxx_extern_templates Feature record: CXX_FEATURE:1cxx_final Feature record: CXX_FEATURE:1cxx_func_identifier Feature record: CXX_FEATURE:1cxx_generalized_initializers Feature record: CXX_FEATURE:1cxx_generic_lambdas Feature record: CXX_FEATURE:1cxx_inheriting_constructors Feature record: CXX_FEATURE:1cxx_inline_namespaces Feature record: CXX_FEATURE:1cxx_lambdas Feature record: CXX_FEATURE:1cxx_lambda_init_captures Feature record: CXX_FEATURE:1cxx_local_type_template_args Feature record: CXX_FEATURE:1cxx_long_long_type Feature record: CXX_FEATURE:1cxx_noexcept Feature record: CXX_FEATURE:1cxx_nonstatic_member_init Feature record: CXX_FEATURE:1cxx_nullptr Feature record: CXX_FEATURE:1cxx_override Feature record: CXX_FEATURE:1cxx_range_for Feature record: CXX_FEATURE:1cxx_raw_string_literals Feature record: CXX_FEATURE:1cxx_reference_qualified_functions Feature record: CXX_FEATURE:1cxx_return_type_deduction Feature record: CXX_FEATURE:1cxx_right_angle_brackets Feature record: CXX_FEATURE:1cxx_rvalue_references Feature record: CXX_FEATURE:1cxx_sizeof_member Feature record: CXX_FEATURE:1cxx_static_assert Feature record: CXX_FEATURE:1cxx_strong_enums Feature record: CXX_FEATURE:1cxx_template_template_parameters Feature record: CXX_FEATURE:1cxx_thread_local Feature record: CXX_FEATURE:1cxx_trailing_return_types Feature record: CXX_FEATURE:1cxx_unicode_literals Feature record: CXX_FEATURE:1cxx_uniform_initialization Feature record: CXX_FEATURE:1cxx_unrestricted_unions Feature record: CXX_FEATURE:1cxx_user_literals Feature record: CXX_FEATURE:1cxx_variable_templates Feature record: CXX_FEATURE:1cxx_variadic_macros Feature record: CXX_FEATURE:1cxx_variadic_templates Determining if the include file sys/types.h exists passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_d8b27" [1/2] Building C object CMakeFiles\cmTC_d8b27.dir\CheckIncludeFile.c.obj [2/2] Linking C executable cmTC_d8b27.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if the include file stdint.h exists passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_c13d9" [1/2] Building C object CMakeFiles\cmTC_c13d9.dir\CheckIncludeFile.c.obj [2/2] Linking C executable cmTC_c13d9.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if the include file stddef.h exists passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_13d13" [1/2] Building C object CMakeFiles\cmTC_13d13.dir\CheckIncludeFile.c.obj [2/2] Linking C executable cmTC_13d13.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining size of size_t passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_d065c" [1/2] Building C object CMakeFiles\cmTC_d065c.dir\TEST_TYPE.c.obj [2/2] Linking C executable cmTC_d065c.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files sys/types.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_22f3b" [1/2] Building C object CMakeFiles\cmTC_22f3b.dir\has_include_HAVE_SYS_TYPES_H.c.obj [2/2] Linking C executable cmTC_22f3b.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files inttypes.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_d64d1" [1/2] Building C object CMakeFiles\cmTC_d64d1.dir\has_include_HAVE_INTTYPES_H.c.obj [2/2] Linking C executable cmTC_d64d1.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files stdarg.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_57282" [1/2] Building C object CMakeFiles\cmTC_57282.dir\has_include_HAVE_STDARG_H.c.obj [2/2] Linking C executable cmTC_57282.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files stdbool.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_f096e" [1/2] Building C object CMakeFiles\cmTC_f096e.dir\has_include_HAVE_STDBOOL_H.c.obj [2/2] Linking C executable cmTC_f096e.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files stdint.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_8ba2d" [1/2] Building C object CMakeFiles\cmTC_8ba2d.dir\has_include_HAVE_STDINT_H.c.obj [2/2] Linking C executable cmTC_8ba2d.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files stdlib.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_aeeb8" [1/2] Building C object CMakeFiles\cmTC_aeeb8.dir\has_include_HAVE_STDLIB_H.c.obj [2/2] Linking C executable cmTC_aeeb8.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files stdio.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_3f582" [1/2] Building C object CMakeFiles\cmTC_3f582.dir\has_include_HAVE_STDIO_H.c.obj [2/2] Linking C executable cmTC_3f582.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files string.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_58737" [1/2] Building C object CMakeFiles\cmTC_58737.dir\has_include_HAVE_STRING_H.c.obj [2/2] Linking C executable cmTC_58737.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files sys/stat.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_17db7" [1/2] Building C object CMakeFiles\cmTC_17db7.dir\has_include_HAVE_SYS_STAT_H.c.obj [2/2] Linking C executable cmTC_17db7.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if files memory.h exist passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_fc0bf" [1/2] Building C object CMakeFiles\cmTC_fc0bf.dir\has_include_HAVE_MEMORY_H.c.obj [2/2] Linking C executable cmTC_fc0bf.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining size of unsigned short passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_1c486" [1/2] Building C object CMakeFiles\cmTC_1c486.dir\CMAKE_SIZEOF_UNSIGNED_SHORT.c.obj [2/2] Linking C executable cmTC_1c486.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification Determining if the system is big endian passed with the following output: Change Dir: C:/cygwin/home/Administrator/wiredtiger/cmake_build/CMakeFiles/CMakeTmp Run Build Command:"C:/ProgramData/chocolatey/bin/ninja.exe" "cmTC_3e427" [1/2] Building C object CMakeFiles\cmTC_3e427.dir\TestEndianess.c.obj [2/2] Linking C executable cmTC_3e427.exe LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/OPT:REF' specification TestEndianess.c: /* A 16 bit integer is required. */ typedef unsigned short cmakeint16; /* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN." On a big endian machine the characters will be exchanged pairwise. */ const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000}; /* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN." On a little endian machine the characters will be exchanged pairwise. */ const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_little[argc]; require += info_big[argc]; (void)argv; return require; }