Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Multiple E1083 on opencv-master compilation despite the correctness of path and rights

I'm compiling opencv (master) in Windows 10 x64 with VS2017, toolset v141. VS projects are generated by cmake.

I'm having multiple errors such as:

c1xx : fatal error C1083: Cannot open source file: 'I:\opencv-master\opencv\3rdparty\openexr\IlmThread\IlmThreadWin32.cpp': No such file or directory [I:\opencv-master\build\3rdparty\openexr\IlmImf.vcxproj]

However, I don't understand how this could happen since:

the path is an absolute path,
the files do exist,
the right in read access are correct

I'm having this problem only with openexr project.

cmake -G $target -T v141, host=x64 -j8 `
    -DBUILD_JAVA=0 -DWITH_MATLAB=0 -DBUILD_DOC=0 -DBUILD_PERF_TESTS=0 -DBUILD_TESTS=0 -DBUILD_opencv_world=0 `
    -DOPENCV_ENABLE_NONFREE=1 -DBUILD_opencv-apps=0 -DENABLE_PYLINT=0 -DENABLE_CXX11=1 -DWITH_VTK=1 `
    -DCUDA_SDK_ROOT_DIR="$env:CUDA_PATH" -DCUDA_ARCH_BIN="5.2" -DCUDA_VERBOSE_BUILD=0 -DBUILD_CUDA_STUBS=0 `
    -DWITH_OPENCL=1 -DWITH_CUDA=1 -DMKL_WITH_OPENMP=1 -DMKL_WITH_TBB=1 `
    -DOPENCV_EXTRA_MODULES_PATH="../opencv_contrib/modules" `
    -DINSTALL_CREATE_DISTRIB=1 -DCPACK_BINARY_ZIP=1 -DCPACK_SOURCE_ZIP=1 -DCMAKE_VERBOSE_MAKEFILE=0 `
    ../opencv | Tee-Object -Variable RESULT

https://github.com/opencv/opencv/issues/13733

https://stackoverflow.com/questions/54463295/multiple-errors-c1083-despite-the-correctness-of-path-and-rights

Multiple E1083 on opencv-master compilation despite the correctness of path and rights

I'm compiling opencv (master) in Windows 10 x64 with VS2017, toolset v141. VS projects are generated by cmake.

I'm having multiple errors such as:

c1xx : fatal error C1083: Cannot open source file: 'I:\opencv-master\opencv\3rdparty\openexr\IlmThread\IlmThreadWin32.cpp': No such file or directory [I:\opencv-master\build\3rdparty\openexr\IlmImf.vcxproj]

However, I don't understand how this could happen since:

the path is an absolute path,
the files do exist,
the right in read access are correct

I'm having this problem only with openexr project.

cmake -G $target -T v141, host=x64 -j8 `
    -DBUILD_JAVA=0 -DWITH_MATLAB=0 -DBUILD_DOC=0 -DBUILD_PERF_TESTS=0 -DBUILD_TESTS=0 -DBUILD_opencv_world=0 `
    -DOPENCV_ENABLE_NONFREE=1 -DBUILD_opencv-apps=0 -DENABLE_PYLINT=0 -DENABLE_CXX11=1 -DWITH_VTK=1 `
    -DCUDA_SDK_ROOT_DIR="$env:CUDA_PATH" -DCUDA_ARCH_BIN="5.2" -DCUDA_VERBOSE_BUILD=0 -DBUILD_CUDA_STUBS=0 `
    -DWITH_OPENCL=1 -DWITH_CUDA=1 -DMKL_WITH_OPENMP=1 -DMKL_WITH_TBB=1 `
    -DOPENCV_EXTRA_MODULES_PATH="../opencv_contrib/modules" `
    -DINSTALL_CREATE_DISTRIB=1 -DCPACK_BINARY_ZIP=1 -DCPACK_SOURCE_ZIP=1 -DCMAKE_VERBOSE_MAKEFILE=0 `
    ../opencv | Tee-Object -Variable RESULT

CMakeOutput.log:

The system is: Windows - 10.0.17134 - AMD64 Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler:
Build flags: Id flags:

The output was: 0 Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:38 PM. Project "I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdCXX\CompilerIdCXX.vcxproj" on node 1 (default targets). PrepareForBuild: Creating directory "Debug\". Creating directory "Debug\CompilerIdCXX.tlog\". InitializeBuildStatus: Creating "Debug\CompilerIdCXX.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified. ClCompile: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:classic /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\" /Fd"Debug\vc141.pdb" /Gd /TP /FC /errorReport:queue CMakeCXXCompilerId.cpp CMakeCXXCompilerId.cpp Link: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj CompilerIdCXX.vcxproj -> I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdCXX.\CompilerIdCXX.exe PostBuildEvent: for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i :VCEnd CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\Hostx86\x64\cl.exe FinalizeBuildStatus: Deleting file "Debug\CompilerIdCXX.tlog\unsuccessfulbuild". Touching "Debug\CompilerIdCXX.tlog\CompilerIdCXX.lastbuildstate". Done Building Project "I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdCXX\CompilerIdCXX.vcxproj" (default targets).

Build succeeded. 0 Warning(s) 0 Error(s)

Time Elapsed 00:00:00.42

Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe"

Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj"

The CXX compiler identification is MSVC, found in "I:/opencv-master/build/CMakeFiles/3.13.3/CompilerIdCXX/CompilerIdCXX.exe"

Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler:
Build flags: Id flags:

The output was: 0 Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:39 PM. Project "I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdC\CompilerIdC.vcxproj" on node 1 (default targets). PrepareForBuild: Creating directory "Debug\". Creating directory "Debug\CompilerIdC.tlog\". InitializeBuildStatus: Creating "Debug\CompilerIdC.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified. ClCompile: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:classic /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\" /Fd"Debug\vc141.pdb" /Gd /TC /FC /errorReport:queue CMakeCCompilerId.c CMakeCCompilerId.c Link: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj CompilerIdC.vcxproj -> I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdC.\CompilerIdC.exe PostBuildEvent: for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i :VCEnd CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\Hostx86\x64\cl.exe FinalizeBuildStatus: Deleting file "Debug\CompilerIdC.tlog\unsuccessfulbuild". Touching "Debug\CompilerIdC.tlog\CompilerIdC.lastbuildstate". Done Building Project "I:\opencv-master\build\CMakeFiles\3.13.3\CompilerIdC\CompilerIdC.vcxproj" (default targets).

Build succeeded. 0 Warning(s) 0 Error(s)

Time Elapsed 00:00:00.31

Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe"

Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj"

The C compiler identification is MSVC, found in "I:/opencv-master/build/CMakeFiles/3.13.3/CompilerIdC/CompilerIdC.exe"

Determining if the CXX compiler works passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_aa0e7.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:39 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_aa0e7.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_aa0e7.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_aa0e7.dir\Debug\cmTC_aa0e7.tlog\".

InitializeBuildStatus:

Creating "cmTC_aa0e7.dir\Debug\cmTC_aa0e7.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_aa0e7.dir\Debug\" /Fd"cmTC_aa0e7.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "I:\opencv-master\build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_aa0e7.dir\Debug\" /Fd"cmTC_aa0e7.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "I:\opencv-master\build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"

testCXXCompiler.cxx

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_aa0e7.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_aa0e7.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_aa0e7.lib" /MACHINE:X64 /machine:x64 cmTC_aa0e7.dir\Debug\testCXXCompiler.obj

cmTC_aa0e7.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_aa0e7.exe

FinalizeBuildStatus:

Deleting file "cmTC_aa0e7.dir\Debug\cmTC_aa0e7.tlog\unsuccessfulbuild".

Touching "cmTC_aa0e7.dir\Debug\cmTC_aa0e7.tlog\cmTC_aa0e7.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_aa0e7.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.64

Detecting CXX compiler ABI info compiled with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_5dcb0.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:40 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_5dcb0.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_5dcb0.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_5dcb0.dir\Debug\cmTC_5dcb0.tlog\".

InitializeBuildStatus:

Creating "cmTC_5dcb0.dir\Debug\cmTC_5dcb0.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_5dcb0.dir\Debug\" /Fd"cmTC_5dcb0.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.13\Modules\CMakeCXXCompilerABI.cpp"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_5dcb0.dir\Debug\" /Fd"cmTC_5dcb0.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.13\Modules\CMakeCXXCompilerABI.cpp"

CMakeCXXCompilerABI.cpp

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_5dcb0.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_5dcb0.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_5dcb0.lib" /MACHINE:X64 /machine:x64 cmTC_5dcb0.dir\Debug\CMakeCXXCompilerABI.obj

cmTC_5dcb0.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_5dcb0.exe

FinalizeBuildStatus:

Deleting file "cmTC_5dcb0.dir\Debug\cmTC_5dcb0.tlog\unsuccessfulbuild".

Touching "cmTC_5dcb0.dir\Debug\cmTC_5dcb0.tlog\cmTC_5dcb0.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_5dcb0.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Detecting CXX [] compiler features compiled with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_d1df3.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:40 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_d1df3.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_d1df3.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_d1df3.dir\Debug\cmTC_d1df3.tlog\".

InitializeBuildStatus:

Creating "cmTC_d1df3.dir\Debug\cmTC_d1df3.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_d1df3.dir\Debug\" /Fd"cmTC_d1df3.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "I:\opencv-master\build\CMakeFiles\feature_tests.cxx"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_d1df3.dir\Debug\" /Fd"cmTC_d1df3.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "I:\opencv-master\build\CMakeFiles\feature_tests.cxx"

feature_tests.cxx

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_d1df3.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_d1df3.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_d1df3.lib" /MACHINE:X64 /machine:x64 cmTC_d1df3.dir\Debug\feature_tests.obj

cmTC_d1df3.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_d1df3.exe

FinalizeBuildStatus:

Deleting file "cmTC_d1df3.dir\Debug\cmTC_d1df3.tlog\unsuccessfulbuild".

Touching "cmTC_d1df3.dir\Debug\cmTC_d1df3.tlog\cmTC_d1df3.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_d1df3.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

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_decltype_incomplete_return_types
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 C compiler works passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_a5221.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:41 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_a5221.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_a5221.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_a5221.dir\Debug\cmTC_a5221.tlog\".

InitializeBuildStatus:

Creating "cmTC_a5221.dir\Debug\cmTC_a5221.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_a5221.dir\Debug\" /Fd"cmTC_a5221.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "I:\opencv-master\build\CMakeFiles\CMakeTmp\testCCompiler.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_a5221.dir\Debug\" /Fd"cmTC_a5221.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "I:\opencv-master\build\CMakeFiles\CMakeTmp\testCCompiler.c"

testCCompiler.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_a5221.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_a5221.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_a5221.lib" /MACHINE:X64 /machine:x64 cmTC_a5221.dir\Debug\testCCompiler.obj

cmTC_a5221.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_a5221.exe

FinalizeBuildStatus:

Deleting file "cmTC_a5221.dir\Debug\cmTC_a5221.tlog\unsuccessfulbuild".

Touching "cmTC_a5221.dir\Debug\cmTC_a5221.tlog\cmTC_a5221.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_a5221.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Detecting C compiler ABI info compiled with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_445b1.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:41 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_445b1.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_445b1.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_445b1.dir\Debug\cmTC_445b1.tlog\".

InitializeBuildStatus:

Creating "cmTC_445b1.dir\Debug\cmTC_445b1.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_445b1.dir\Debug\" /Fd"cmTC_445b1.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.13\Modules\CMakeCCompilerABI.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_445b1.dir\Debug\" /Fd"cmTC_445b1.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.13\Modules\CMakeCCompilerABI.c"

CMakeCCompilerABI.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_445b1.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_445b1.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_445b1.lib" /MACHINE:X64 /machine:x64 cmTC_445b1.dir\Debug\CMakeCCompilerABI.obj

cmTC_445b1.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_445b1.exe

FinalizeBuildStatus:

Deleting file "cmTC_445b1.dir\Debug\cmTC_445b1.tlog\unsuccessfulbuild".

Touching "cmTC_445b1.dir\Debug\cmTC_445b1.tlog\cmTC_445b1.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_445b1.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.36

Detecting C [] compiler features compiled with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_bab70.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:42 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_bab70.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_bab70.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_bab70.dir\Debug\cmTC_bab70.tlog\".

InitializeBuildStatus:

Creating "cmTC_bab70.dir\Debug\cmTC_bab70.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bab70.dir\Debug\" /Fd"cmTC_bab70.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "I:\opencv-master\build\CMakeFiles\feature_tests.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bab70.dir\Debug\" /Fd"cmTC_bab70.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "I:\opencv-master\build\CMakeFiles\feature_tests.c"

feature_tests.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_bab70.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_bab70.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_bab70.lib" /MACHINE:X64 /machine:x64 cmTC_bab70.dir\Debug\feature_tests.obj

cmTC_bab70.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_bab70.exe

FinalizeBuildStatus:

Deleting file "cmTC_bab70.dir\Debug\cmTC_bab70.tlog\unsuccessfulbuild".

Touching "cmTC_bab70.dir\Debug\cmTC_bab70.tlog\cmTC_bab70.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_bab70.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_variadic_macros

Determining if the include file sys/types.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_7e0db.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:52 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7e0db.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_7e0db.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_7e0db.dir\Debug\cmTC_7e0db.tlog\".

InitializeBuildStatus:

Creating "cmTC_7e0db.dir\Debug\cmTC_7e0db.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7e0db.dir\Debug\" /Fd"cmTC_7e0db.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7e0db.dir\Debug\" /Fd"cmTC_7e0db.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7e0db.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7e0db.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7e0db.lib" /MACHINE:X64 /machine:x64 cmTC_7e0db.dir\Debug\CheckIncludeFile.obj

cmTC_7e0db.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7e0db.exe

FinalizeBuildStatus:

Deleting file "cmTC_7e0db.dir\Debug\cmTC_7e0db.tlog\unsuccessfulbuild".

Touching "cmTC_7e0db.dir\Debug\cmTC_7e0db.tlog\cmTC_7e0db.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7e0db.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

Determining if the include file stdint.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_7849d.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:52 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7849d.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_7849d.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_7849d.dir\Debug\cmTC_7849d.tlog\".

InitializeBuildStatus:

Creating "cmTC_7849d.dir\Debug\cmTC_7849d.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7849d.dir\Debug\" /Fd"cmTC_7849d.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7849d.dir\Debug\" /Fd"cmTC_7849d.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7849d.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7849d.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7849d.lib" /MACHINE:X64 /machine:x64 cmTC_7849d.dir\Debug\CheckIncludeFile.obj

cmTC_7849d.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7849d.exe

FinalizeBuildStatus:

Deleting file "cmTC_7849d.dir\Debug\cmTC_7849d.tlog\unsuccessfulbuild".

Touching "cmTC_7849d.dir\Debug\cmTC_7849d.tlog\cmTC_7849d.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7849d.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the include file stddef.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_0804c.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:53 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_0804c.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_0804c.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_0804c.dir\Debug\cmTC_0804c.tlog\".

InitializeBuildStatus:

Creating "cmTC_0804c.dir\Debug\cmTC_0804c.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_0804c.dir\Debug\" /Fd"cmTC_0804c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_0804c.dir\Debug\" /Fd"cmTC_0804c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_0804c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_0804c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_0804c.lib" /MACHINE:X64 /machine:x64 cmTC_0804c.dir\Debug\CheckIncludeFile.obj

cmTC_0804c.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_0804c.exe

FinalizeBuildStatus:

Deleting file "cmTC_0804c.dir\Debug\cmTC_0804c.tlog\unsuccessfulbuild".

Touching "cmTC_0804c.dir\Debug\cmTC_0804c.tlog\cmTC_0804c.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_0804c.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of unsigned short passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_5388c.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:53 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_5388c.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_5388c.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_5388c.dir\Debug\cmTC_5388c.tlog\".

InitializeBuildStatus:

Creating "cmTC_5388c.dir\Debug\cmTC_5388c.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_5388c.dir\Debug\" /Fd"cmTC_5388c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\CMAKE_SIZEOF_UNSIGNED_SHORT.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_5388c.dir\Debug\" /Fd"cmTC_5388c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\CMAKE_SIZEOF_UNSIGNED_SHORT.c"

CMAKE_SIZEOF_UNSIGNED_SHORT.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_5388c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_5388c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_5388c.lib" /MACHINE:X64 /machine:x64 cmTC_5388c.dir\Debug\CMAKE_SIZEOF_UNSIGNED_SHORT.obj

cmTC_5388c.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_5388c.exe

FinalizeBuildStatus:

Deleting file "cmTC_5388c.dir\Debug\cmTC_5388c.tlog\unsuccessfulbuild".

Touching "cmTC_5388c.dir\Debug\cmTC_5388c.tlog\cmTC_5388c.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_5388c.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the system is big endian passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_9dc2a.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:54 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9dc2a.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_9dc2a.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_9dc2a.dir\Debug\cmTC_9dc2a.tlog\".

InitializeBuildStatus:

Creating "cmTC_9dc2a.dir\Debug\cmTC_9dc2a.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9dc2a.dir\Debug\" /Fd"cmTC_9dc2a.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\TestEndianess.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9dc2a.dir\Debug\" /Fd"cmTC_9dc2a.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\TestEndianess.c"

TestEndianess.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9dc2a.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9dc2a.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9dc2a.lib" /MACHINE:X64 /machine:x64 cmTC_9dc2a.dir\Debug\TestEndianess.obj

cmTC_9dc2a.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9dc2a.exe

FinalizeBuildStatus:

Deleting file "cmTC_9dc2a.dir\Debug\cmTC_9dc2a.tlog\unsuccessfulbuild".

Touching "cmTC_9dc2a.dir\Debug\cmTC_9dc2a.tlog\cmTC_9dc2a.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9dc2a.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

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; }

Determining size of size_t passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_ebe62.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:55 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_ebe62.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_ebe62.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_ebe62.dir\Debug\cmTC_ebe62.tlog\".

InitializeBuildStatus:

Creating "cmTC_ebe62.dir\Debug\cmTC_ebe62.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ebe62.dir\Debug\" /Fd"cmTC_ebe62.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIZE_T.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ebe62.dir\Debug\" /Fd"cmTC_ebe62.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIZE_T.c"

SIZEOF_SIZE_T.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_ebe62.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_ebe62.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_ebe62.lib" /MACHINE:X64 /machine:x64 cmTC_ebe62.dir\Debug\SIZEOF_SIZE_T.obj

cmTC_ebe62.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_ebe62.exe

FinalizeBuildStatus:

Deleting file "cmTC_ebe62.dir\Debug\cmTC_ebe62.tlog\unsuccessfulbuild".

Touching "cmTC_ebe62.dir\Debug\cmTC_ebe62.tlog\cmTC_ebe62.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_ebe62.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining if the include file assert.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_b22d8.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:56 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_b22d8.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_b22d8.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_b22d8.dir\Debug\cmTC_b22d8.tlog\".

InitializeBuildStatus:

Creating "cmTC_b22d8.dir\Debug\cmTC_b22d8.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_b22d8.dir\Debug\" /Fd"cmTC_b22d8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_b22d8.dir\Debug\" /Fd"cmTC_b22d8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_b22d8.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_b22d8.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_b22d8.lib" /MACHINE:X64 /machine:x64 cmTC_b22d8.dir\Debug\CheckIncludeFile.obj

cmTC_b22d8.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_b22d8.exe

FinalizeBuildStatus:

Deleting file "cmTC_b22d8.dir\Debug\cmTC_b22d8.tlog\unsuccessfulbuild".

Touching "cmTC_b22d8.dir\Debug\cmTC_b22d8.tlog\cmTC_b22d8.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_b22d8.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.43

Determining if the include file fcntl.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_95098.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:57 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_95098.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_95098.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_95098.dir\Debug\cmTC_95098.tlog\".

InitializeBuildStatus:

Creating "cmTC_95098.dir\Debug\cmTC_95098.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_95098.dir\Debug\" /Fd"cmTC_95098.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_95098.dir\Debug\" /Fd"cmTC_95098.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_95098.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_95098.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_95098.lib" /MACHINE:X64 /machine:x64 cmTC_95098.dir\Debug\CheckIncludeFile.obj

cmTC_95098.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_95098.exe

FinalizeBuildStatus:

Deleting file "cmTC_95098.dir\Debug\cmTC_95098.tlog\unsuccessfulbuild".

Touching "cmTC_95098.dir\Debug\cmTC_95098.tlog\cmTC_95098.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_95098.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.41

Determining if the include file inttypes.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_cce58.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:57 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_cce58.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_cce58.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_cce58.dir\Debug\cmTC_cce58.tlog\".

InitializeBuildStatus:

Creating "cmTC_cce58.dir\Debug\cmTC_cce58.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_cce58.dir\Debug\" /Fd"cmTC_cce58.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_cce58.dir\Debug\" /Fd"cmTC_cce58.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_cce58.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_cce58.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_cce58.lib" /MACHINE:X64 /machine:x64 cmTC_cce58.dir\Debug\CheckIncludeFile.obj

cmTC_cce58.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_cce58.exe

FinalizeBuildStatus:

Deleting file "cmTC_cce58.dir\Debug\cmTC_cce58.tlog\unsuccessfulbuild".

Touching "cmTC_cce58.dir\Debug\cmTC_cce58.tlog\cmTC_cce58.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_cce58.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining if the include file io.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_1999b.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:58 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_1999b.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_1999b.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_1999b.dir\Debug\cmTC_1999b.tlog\".

InitializeBuildStatus:

Creating "cmTC_1999b.dir\Debug\cmTC_1999b.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_1999b.dir\Debug\" /Fd"cmTC_1999b.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_1999b.dir\Debug\" /Fd"cmTC_1999b.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_1999b.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_1999b.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_1999b.lib" /MACHINE:X64 /machine:x64 cmTC_1999b.dir\Debug\CheckIncludeFile.obj

cmTC_1999b.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_1999b.exe

FinalizeBuildStatus:

Deleting file "cmTC_1999b.dir\Debug\cmTC_1999b.tlog\unsuccessfulbuild".

Touching "cmTC_1999b.dir\Debug\cmTC_1999b.tlog\cmTC_1999b.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_1999b.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the include file limits.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_07cfb.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:58 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_07cfb.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_07cfb.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_07cfb.dir\Debug\cmTC_07cfb.tlog\".

InitializeBuildStatus:

Creating "cmTC_07cfb.dir\Debug\cmTC_07cfb.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_07cfb.dir\Debug\" /Fd"cmTC_07cfb.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_07cfb.dir\Debug\" /Fd"cmTC_07cfb.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_07cfb.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_07cfb.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_07cfb.lib" /MACHINE:X64 /machine:x64 cmTC_07cfb.dir\Debug\CheckIncludeFile.obj

cmTC_07cfb.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_07cfb.exe

FinalizeBuildStatus:

Deleting file "cmTC_07cfb.dir\Debug\cmTC_07cfb.tlog\unsuccessfulbuild".

Touching "cmTC_07cfb.dir\Debug\cmTC_07cfb.tlog\cmTC_07cfb.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_07cfb.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

Determining if the include file malloc.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_3a029.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:59 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_3a029.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_3a029.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_3a029.dir\Debug\cmTC_3a029.tlog\".

InitializeBuildStatus:

Creating "cmTC_3a029.dir\Debug\cmTC_3a029.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_3a029.dir\Debug\" /Fd"cmTC_3a029.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_3a029.dir\Debug\" /Fd"cmTC_3a029.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_3a029.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_3a029.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_3a029.lib" /MACHINE:X64 /machine:x64 cmTC_3a029.dir\Debug\CheckIncludeFile.obj

cmTC_3a029.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_3a029.exe

FinalizeBuildStatus:

Deleting file "cmTC_3a029.dir\Debug\cmTC_3a029.tlog\unsuccessfulbuild".

Touching "cmTC_3a029.dir\Debug\cmTC_3a029.tlog\cmTC_3a029.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_3a029.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

Determining if the include file memory.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_214ee.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:43:59 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_214ee.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_214ee.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_214ee.dir\Debug\cmTC_214ee.tlog\".

InitializeBuildStatus:

Creating "cmTC_214ee.dir\Debug\cmTC_214ee.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_214ee.dir\Debug\" /Fd"cmTC_214ee.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_214ee.dir\Debug\" /Fd"cmTC_214ee.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_214ee.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_214ee.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_214ee.lib" /MACHINE:X64 /machine:x64 cmTC_214ee.dir\Debug\CheckIncludeFile.obj

cmTC_214ee.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_214ee.exe

FinalizeBuildStatus:

Deleting file "cmTC_214ee.dir\Debug\cmTC_214ee.tlog\unsuccessfulbuild".

Touching "cmTC_214ee.dir\Debug\cmTC_214ee.tlog\cmTC_214ee.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_214ee.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

Determining if the include file search.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_c124d.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:00 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_c124d.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_c124d.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_c124d.dir\Debug\cmTC_c124d.tlog\".

InitializeBuildStatus:

Creating "cmTC_c124d.dir\Debug\cmTC_c124d.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c124d.dir\Debug\" /Fd"cmTC_c124d.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c124d.dir\Debug\" /Fd"cmTC_c124d.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_c124d.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_c124d.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_c124d.lib" /MACHINE:X64 /machine:x64 cmTC_c124d.dir\Debug\CheckIncludeFile.obj

cmTC_c124d.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_c124d.exe

FinalizeBuildStatus:

Deleting file "cmTC_c124d.dir\Debug\cmTC_c124d.tlog\unsuccessfulbuild".

Touching "cmTC_c124d.dir\Debug\cmTC_c124d.tlog\cmTC_c124d.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_c124d.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining if the include file string.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_324f5.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:00 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_324f5.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_324f5.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_324f5.dir\Debug\cmTC_324f5.tlog\".

InitializeBuildStatus:

Creating "cmTC_324f5.dir\Debug\cmTC_324f5.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_324f5.dir\Debug\" /Fd"cmTC_324f5.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_324f5.dir\Debug\" /Fd"cmTC_324f5.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_324f5.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_324f5.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_324f5.lib" /MACHINE:X64 /machine:x64 cmTC_324f5.dir\Debug\CheckIncludeFile.obj

cmTC_324f5.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_324f5.exe

FinalizeBuildStatus:

Deleting file "cmTC_324f5.dir\Debug\cmTC_324f5.tlog\unsuccessfulbuild".

Touching "cmTC_324f5.dir\Debug\cmTC_324f5.tlog\cmTC_324f5.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_324f5.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Performing C SOURCE FILE Test C_HAS_inline succeeded with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_079e8.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:01 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_079e8.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_079e8.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_079e8.dir\Debug\cmTC_079e8.tlog\".

InitializeBuildStatus:

Creating "cmTC_079e8.dir\Debug\cmTC_079e8.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D C_HAS_inline /D inline=inline /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_079e8.dir\Debug\" /Fd"cmTC_079e8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\src.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D C_HAS_inline /D inline=inline /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_079e8.dir\Debug\" /Fd"cmTC_079e8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\src.c"

src.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_079e8.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_079e8.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_079e8.lib" /MACHINE:X64 /machine:x64 cmTC_079e8.dir\Debug\src.obj

cmTC_079e8.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_079e8.exe

FinalizeBuildStatus:

Deleting file "cmTC_079e8.dir\Debug\cmTC_079e8.tlog\unsuccessfulbuild".

Touching "cmTC_079e8.dir\Debug\cmTC_079e8.tlog\cmTC_079e8.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_079e8.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.40

Source file was:

    typedef int foo_t;
    static inline foo_t static_foo() {return 0;}
    foo_t foo(){return 0;}
    int main(int argc, char *argv[]) {return 0;}

Determining size of signed short passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_ff972.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:01 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_ff972.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_ff972.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_ff972.dir\Debug\cmTC_ff972.tlog\".

InitializeBuildStatus:

Creating "cmTC_ff972.dir\Debug\cmTC_ff972.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ff972.dir\Debug\" /Fd"cmTC_ff972.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_SHORT.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ff972.dir\Debug\" /Fd"cmTC_ff972.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_SHORT.c"

SIZEOF_SIGNED_SHORT.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_ff972.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_ff972.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_ff972.lib" /MACHINE:X64 /machine:x64 cmTC_ff972.dir\Debug\SIZEOF_SIGNED_SHORT.obj

cmTC_ff972.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_ff972.exe

FinalizeBuildStatus:

Deleting file "cmTC_ff972.dir\Debug\cmTC_ff972.tlog\unsuccessfulbuild".

Touching "cmTC_ff972.dir\Debug\cmTC_ff972.tlog\cmTC_ff972.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_ff972.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of unsigned short passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_2c4da.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:02 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_2c4da.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_2c4da.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_2c4da.dir\Debug\cmTC_2c4da.tlog\".

InitializeBuildStatus:

Creating "cmTC_2c4da.dir\Debug\cmTC_2c4da.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2c4da.dir\Debug\" /Fd"cmTC_2c4da.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_SHORT.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2c4da.dir\Debug\" /Fd"cmTC_2c4da.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_SHORT.c"

SIZEOF_UNSIGNED_SHORT.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_2c4da.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_2c4da.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_2c4da.lib" /MACHINE:X64 /machine:x64 cmTC_2c4da.dir\Debug\SIZEOF_UNSIGNED_SHORT.obj

cmTC_2c4da.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_2c4da.exe

FinalizeBuildStatus:

Deleting file "cmTC_2c4da.dir\Debug\cmTC_2c4da.tlog\unsuccessfulbuild".

Touching "cmTC_2c4da.dir\Debug\cmTC_2c4da.tlog\cmTC_2c4da.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_2c4da.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.40

Determining size of signed int passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_daa0c.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:02 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_daa0c.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_daa0c.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_daa0c.dir\Debug\cmTC_daa0c.tlog\".

InitializeBuildStatus:

Creating "cmTC_daa0c.dir\Debug\cmTC_daa0c.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_daa0c.dir\Debug\" /Fd"cmTC_daa0c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_INT.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_daa0c.dir\Debug\" /Fd"cmTC_daa0c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_INT.c"

SIZEOF_SIGNED_INT.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_daa0c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_daa0c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_daa0c.lib" /MACHINE:X64 /machine:x64 cmTC_daa0c.dir\Debug\SIZEOF_SIGNED_INT.obj

cmTC_daa0c.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_daa0c.exe

FinalizeBuildStatus:

Deleting file "cmTC_daa0c.dir\Debug\cmTC_daa0c.tlog\unsuccessfulbuild".

Touching "cmTC_daa0c.dir\Debug\cmTC_daa0c.tlog\cmTC_daa0c.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_daa0c.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of unsigned int passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_452de.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:03 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_452de.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_452de.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_452de.dir\Debug\cmTC_452de.tlog\".

InitializeBuildStatus:

Creating "cmTC_452de.dir\Debug\cmTC_452de.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_452de.dir\Debug\" /Fd"cmTC_452de.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_INT.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_452de.dir\Debug\" /Fd"cmTC_452de.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_INT.c"

SIZEOF_UNSIGNED_INT.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_452de.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_452de.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_452de.lib" /MACHINE:X64 /machine:x64 cmTC_452de.dir\Debug\SIZEOF_UNSIGNED_INT.obj

cmTC_452de.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_452de.exe

FinalizeBuildStatus:

Deleting file "cmTC_452de.dir\Debug\cmTC_452de.tlog\unsuccessfulbuild".

Touching "cmTC_452de.dir\Debug\cmTC_452de.tlog\cmTC_452de.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_452de.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining size of signed long passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_9854c.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:03 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9854c.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_9854c.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_9854c.dir\Debug\cmTC_9854c.tlog\".

InitializeBuildStatus:

Creating "cmTC_9854c.dir\Debug\cmTC_9854c.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9854c.dir\Debug\" /Fd"cmTC_9854c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_LONG.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9854c.dir\Debug\" /Fd"cmTC_9854c.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_LONG.c"

SIZEOF_SIGNED_LONG.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9854c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9854c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9854c.lib" /MACHINE:X64 /machine:x64 cmTC_9854c.dir\Debug\SIZEOF_SIGNED_LONG.obj

cmTC_9854c.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9854c.exe

FinalizeBuildStatus:

Deleting file "cmTC_9854c.dir\Debug\cmTC_9854c.tlog\unsuccessfulbuild".

Touching "cmTC_9854c.dir\Debug\cmTC_9854c.tlog\cmTC_9854c.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9854c.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.42

Determining size of unsigned long passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_dd1a7.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:04 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_dd1a7.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_dd1a7.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_dd1a7.dir\Debug\cmTC_dd1a7.tlog\".

InitializeBuildStatus:

Creating "cmTC_dd1a7.dir\Debug\cmTC_dd1a7.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_dd1a7.dir\Debug\" /Fd"cmTC_dd1a7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_LONG.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_dd1a7.dir\Debug\" /Fd"cmTC_dd1a7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_LONG.c"

SIZEOF_UNSIGNED_LONG.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_dd1a7.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_dd1a7.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_dd1a7.lib" /MACHINE:X64 /machine:x64 cmTC_dd1a7.dir\Debug\SIZEOF_UNSIGNED_LONG.obj

cmTC_dd1a7.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_dd1a7.exe

FinalizeBuildStatus:

Deleting file "cmTC_dd1a7.dir\Debug\cmTC_dd1a7.tlog\unsuccessfulbuild".

Touching "cmTC_dd1a7.dir\Debug\cmTC_dd1a7.tlog\cmTC_dd1a7.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_dd1a7.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of signed long long passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_b86fd.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:04 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_b86fd.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_b86fd.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_b86fd.dir\Debug\cmTC_b86fd.tlog\".

InitializeBuildStatus:

Creating "cmTC_b86fd.dir\Debug\cmTC_b86fd.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_b86fd.dir\Debug\" /Fd"cmTC_b86fd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_LONG_LONG.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_b86fd.dir\Debug\" /Fd"cmTC_b86fd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_SIGNED_LONG_LONG.c"

SIZEOF_SIGNED_LONG_LONG.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_b86fd.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_b86fd.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_b86fd.lib" /MACHINE:X64 /machine:x64 cmTC_b86fd.dir\Debug\SIZEOF_SIGNED_LONG_LONG.obj

cmTC_b86fd.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_b86fd.exe

FinalizeBuildStatus:

Deleting file "cmTC_b86fd.dir\Debug\cmTC_b86fd.tlog\unsuccessfulbuild".

Touching "cmTC_b86fd.dir\Debug\cmTC_b86fd.tlog\cmTC_b86fd.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_b86fd.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.43

Determining size of unsigned long long passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_52031.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:05 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_52031.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_52031.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_52031.dir\Debug\cmTC_52031.tlog\".

InitializeBuildStatus:

Creating "cmTC_52031.dir\Debug\cmTC_52031.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_52031.dir\Debug\" /Fd"cmTC_52031.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_LONG_LONG.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_52031.dir\Debug\" /Fd"cmTC_52031.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_LONG_LONG.c"

SIZEOF_UNSIGNED_LONG_LONG.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_52031.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_52031.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_52031.lib" /MACHINE:X64 /machine:x64 cmTC_52031.dir\Debug\SIZEOF_UNSIGNED_LONG_LONG.obj

cmTC_52031.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_52031.exe

FinalizeBuildStatus:

Deleting file "cmTC_52031.dir\Debug\cmTC_52031.tlog\unsuccessfulbuild".

Touching "cmTC_52031.dir\Debug\cmTC_52031.tlog\cmTC_52031.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_52031.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of unsigned char * passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_e3f33.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:05 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e3f33.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_e3f33.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_e3f33.dir\Debug\cmTC_e3f33.tlog\".

InitializeBuildStatus:

Creating "cmTC_e3f33.dir\Debug\cmTC_e3f33.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e3f33.dir\Debug\" /Fd"cmTC_e3f33.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_CHAR_P.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e3f33.dir\Debug\" /Fd"cmTC_e3f33.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_UNSIGNED_CHAR_P.c"

SIZEOF_UNSIGNED_CHAR_P.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e3f33.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e3f33.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e3f33.lib" /MACHINE:X64 /machine:x64 cmTC_e3f33.dir\Debug\SIZEOF_UNSIGNED_CHAR_P.obj

cmTC_e3f33.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e3f33.exe

FinalizeBuildStatus:

Deleting file "cmTC_e3f33.dir\Debug\cmTC_e3f33.tlog\unsuccessfulbuild".

Touching "cmTC_e3f33.dir\Debug\cmTC_e3f33.tlog\cmTC_e3f33.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e3f33.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining size of ptrdiff_t passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_12ce8.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:06 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_12ce8.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_12ce8.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_12ce8.dir\Debug\cmTC_12ce8.tlog\".

InitializeBuildStatus:

Creating "cmTC_12ce8.dir\Debug\cmTC_12ce8.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_12ce8.dir\Debug\" /Fd"cmTC_12ce8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_PTRDIFF_T.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_12ce8.dir\Debug\" /Fd"cmTC_12ce8.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize\SIZEOF_PTRDIFF_T.c"

SIZEOF_PTRDIFF_T.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_12ce8.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_12ce8.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_12ce8.lib" /MACHINE:X64 /machine:x64 cmTC_12ce8.dir\Debug\SIZEOF_PTRDIFF_T.obj

cmTC_12ce8.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_12ce8.exe

FinalizeBuildStatus:

Deleting file "cmTC_12ce8.dir\Debug\cmTC_12ce8.tlog\unsuccessfulbuild".

Touching "cmTC_12ce8.dir\Debug\cmTC_12ce8.tlog\cmTC_12ce8.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_12ce8.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the function setmode exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_918bd.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:06 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_918bd.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_918bd.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_918bd.dir\Debug\cmTC_918bd.tlog\".

InitializeBuildStatus:

Creating "cmTC_918bd.dir\Debug\cmTC_918bd.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=setmode /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_918bd.dir\Debug\" /Fd"cmTC_918bd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=setmode /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_918bd.dir\Debug\" /Fd"cmTC_918bd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_918bd.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_918bd.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_918bd.lib" /MACHINE:X64 /machine:x64 cmTC_918bd.dir\Debug\CheckFunctionExists.obj

cmTC_918bd.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_918bd.exe

FinalizeBuildStatus:

Deleting file "cmTC_918bd.dir\Debug\cmTC_918bd.tlog\unsuccessfulbuild".

Touching "cmTC_918bd.dir\Debug\cmTC_918bd.tlog\cmTC_918bd.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_918bd.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining if the function strchr exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_915d7.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:07 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_915d7.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_915d7.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_915d7.dir\Debug\cmTC_915d7.tlog\".

InitializeBuildStatus:

Creating "cmTC_915d7.dir\Debug\cmTC_915d7.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strchr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_915d7.dir\Debug\" /Fd"cmTC_915d7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strchr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_915d7.dir\Debug\" /Fd"cmTC_915d7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_915d7.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_915d7.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_915d7.lib" /MACHINE:X64 /machine:x64 cmTC_915d7.dir\Debug\CheckFunctionExists.obj

cmTC_915d7.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_915d7.exe

FinalizeBuildStatus:

Deleting file "cmTC_915d7.dir\Debug\cmTC_915d7.tlog\unsuccessfulbuild".

Touching "cmTC_915d7.dir\Debug\cmTC_915d7.tlog\cmTC_915d7.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_915d7.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the function strrchr exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_a238e.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:08 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_a238e.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_a238e.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_a238e.dir\Debug\cmTC_a238e.tlog\".

InitializeBuildStatus:

Creating "cmTC_a238e.dir\Debug\cmTC_a238e.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strrchr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_a238e.dir\Debug\" /Fd"cmTC_a238e.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strrchr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_a238e.dir\Debug\" /Fd"cmTC_a238e.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_a238e.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_a238e.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_a238e.lib" /MACHINE:X64 /machine:x64 cmTC_a238e.dir\Debug\CheckFunctionExists.obj

cmTC_a238e.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_a238e.exe

FinalizeBuildStatus:

Deleting file "cmTC_a238e.dir\Debug\cmTC_a238e.tlog\unsuccessfulbuild".

Touching "cmTC_a238e.dir\Debug\cmTC_a238e.tlog\cmTC_a238e.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_a238e.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.39

Determining if the function strstr exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_02a21.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:08 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_02a21.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_02a21.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_02a21.dir\Debug\cmTC_02a21.tlog\".

InitializeBuildStatus:

Creating "cmTC_02a21.dir\Debug\cmTC_02a21.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strstr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_02a21.dir\Debug\" /Fd"cmTC_02a21.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strstr /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_02a21.dir\Debug\" /Fd"cmTC_02a21.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_02a21.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_02a21.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_02a21.lib" /MACHINE:X64 /machine:x64 cmTC_02a21.dir\Debug\CheckFunctionExists.obj

cmTC_02a21.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_02a21.exe

FinalizeBuildStatus:

Deleting file "cmTC_02a21.dir\Debug\cmTC_02a21.tlog\unsuccessfulbuild".

Touching "cmTC_02a21.dir\Debug\cmTC_02a21.tlog\cmTC_02a21.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_02a21.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.36

Determining if the function strtol exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_8ef70.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:09 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8ef70.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_8ef70.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_8ef70.dir\Debug\cmTC_8ef70.tlog\".

InitializeBuildStatus:

Creating "cmTC_8ef70.dir\Debug\cmTC_8ef70.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtol /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8ef70.dir\Debug\" /Fd"cmTC_8ef70.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtol /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8ef70.dir\Debug\" /Fd"cmTC_8ef70.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8ef70.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8ef70.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8ef70.lib" /MACHINE:X64 /machine:x64 cmTC_8ef70.dir\Debug\CheckFunctionExists.obj

cmTC_8ef70.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8ef70.exe

FinalizeBuildStatus:

Deleting file "cmTC_8ef70.dir\Debug\cmTC_8ef70.tlog\unsuccessfulbuild".

Touching "cmTC_8ef70.dir\Debug\cmTC_8ef70.tlog\cmTC_8ef70.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8ef70.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.44

Determining if the function strtol exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_639f7.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:09 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_639f7.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_639f7.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_639f7.dir\Debug\cmTC_639f7.tlog\".

InitializeBuildStatus:

Creating "cmTC_639f7.dir\Debug\cmTC_639f7.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtol /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_639f7.dir\Debug\" /Fd"cmTC_639f7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtol /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_639f7.dir\Debug\" /Fd"cmTC_639f7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_639f7.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_639f7.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_639f7.lib" /MACHINE:X64 /machine:x64 cmTC_639f7.dir\Debug\CheckFunctionExists.obj

cmTC_639f7.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_639f7.exe

FinalizeBuildStatus:

Deleting file "cmTC_639f7.dir\Debug\cmTC_639f7.tlog\unsuccessfulbuild".

Touching "cmTC_639f7.dir\Debug\cmTC_639f7.tlog\cmTC_639f7.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_639f7.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.41

Determining if the function strtoull exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_e5074.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:10 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e5074.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_e5074.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_e5074.dir\Debug\cmTC_e5074.tlog\".

InitializeBuildStatus:

Creating "cmTC_e5074.dir\Debug\cmTC_e5074.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtoull /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e5074.dir\Debug\" /Fd"cmTC_e5074.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=strtoull /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e5074.dir\Debug\" /Fd"cmTC_e5074.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e5074.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e5074.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e5074.lib" /MACHINE:X64 /machine:x64 cmTC_e5074.dir\Debug\CheckFunctionExists.obj

cmTC_e5074.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e5074.exe

FinalizeBuildStatus:

Deleting file "cmTC_e5074.dir\Debug\cmTC_e5074.tlog\unsuccessfulbuild".

Touching "cmTC_e5074.dir\Debug\cmTC_e5074.tlog\cmTC_e5074.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e5074.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.37

Determining if the function lfind exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_7964e.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:10 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7964e.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_7964e.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_7964e.dir\Debug\cmTC_7964e.tlog\".

InitializeBuildStatus:

Creating "cmTC_7964e.dir\Debug\cmTC_7964e.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=lfind /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7964e.dir\Debug\" /Fd"cmTC_7964e.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D CHECK_FUNCTION_EXISTS=lfind /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7964e.dir\Debug\" /Fd"cmTC_7964e.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.13\Modules\CheckFunctionExists.c"

CheckFunctionExists.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7964e.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7964e.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_7964e.lib" /MACHINE:X64 /machine:x64 cmTC_7964e.dir\Debug\CheckFunctionExists.obj

cmTC_7964e.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_7964e.exe

FinalizeBuildStatus:

Deleting file "cmTC_7964e.dir\Debug\cmTC_7964e.tlog\unsuccessfulbuild".

Touching "cmTC_7964e.dir\Debug\cmTC_7964e.tlog\cmTC_7964e.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_7964e.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.43

Performing C SOURCE FILE Test HAVE_SNPRINTF succeeded with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_8a5bd.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:11 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8a5bd.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_8a5bd.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_8a5bd.dir\Debug\cmTC_8a5bd.tlog\".

InitializeBuildStatus:

Creating "cmTC_8a5bd.dir\Debug\cmTC_8a5bd.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D HAVE_SNPRINTF /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8a5bd.dir\Debug\" /Fd"cmTC_8a5bd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\src.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D HAVE_SNPRINTF /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8a5bd.dir\Debug\" /Fd"cmTC_8a5bd.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\src.c"

src.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8a5bd.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8a5bd.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8a5bd.lib" /MACHINE:X64 /machine:x64 cmTC_8a5bd.dir\Debug\src.obj

cmTC_8a5bd.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8a5bd.exe

FinalizeBuildStatus:

Deleting file "cmTC_8a5bd.dir\Debug\cmTC_8a5bd.tlog\unsuccessfulbuild".

Touching "cmTC_8a5bd.dir\Debug\cmTC_8a5bd.tlog\cmTC_8a5bd.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8a5bd.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.43

Source file was:

include <stdio.h>

int main(void) { char buf[10]; snprintf(buf, 10, "Test %d", 1); return 0; } Determining if the system is big endian passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_9f52f.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:11 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9f52f.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_9f52f.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_9f52f.dir\Debug\cmTC_9f52f.tlog\".

InitializeBuildStatus:

Creating "cmTC_9f52f.dir\Debug\cmTC_9f52f.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9f52f.dir\Debug\" /Fd"cmTC_9f52f.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\TestEndianess.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9f52f.dir\Debug\" /Fd"cmTC_9f52f.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\TestEndianess.c"

TestEndianess.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9f52f.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9f52f.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_9f52f.lib" /MACHINE:X64 /machine:x64 cmTC_9f52f.dir\Debug\TestEndianess.obj

cmTC_9f52f.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_9f52f.exe

FinalizeBuildStatus:

Deleting file "cmTC_9f52f.dir\Debug\cmTC_9f52f.tlog\unsuccessfulbuild".

Touching "cmTC_9f52f.dir\Debug\cmTC_9f52f.tlog\cmTC_9f52f.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_9f52f.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.38

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; }

Determining size of int passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_8afaf.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:44:54 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8afaf.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_8afaf.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_8afaf.dir\Debug\cmTC_8afaf.tlog\".

InitializeBuildStatus:

Creating "cmTC_8afaf.dir\Debug\cmTC_8afaf.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8afaf.dir\Debug\" /Fd"cmTC_8afaf.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize_sizeof_int.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8afaf.dir\Debug\" /Fd"cmTC_8afaf.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CheckTypeSize_sizeof_int.c"

_sizeof_int.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8afaf.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8afaf.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_8afaf.lib" /MACHINE:X64 /machine:x64 cmTC_8afaf.dir\Debug_sizeof_int.obj

cmTC_8afaf.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_8afaf.exe

FinalizeBuildStatus:

Deleting file "cmTC_8afaf.dir\Debug\cmTC_8afaf.tlog\unsuccessfulbuild".

Touching "cmTC_8afaf.dir\Debug\cmTC_8afaf.tlog\cmTC_8afaf.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_8afaf.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.46

Determining if the include file mfapi.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_e2d78.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:45:43 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e2d78.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_e2d78.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_e2d78.dir\Debug\cmTC_e2d78.tlog\".

InitializeBuildStatus:

Creating "cmTC_e2d78.dir\Debug\cmTC_e2d78.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e2d78.dir\Debug\" /Fd"cmTC_e2d78.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e2d78.dir\Debug\" /Fd"cmTC_e2d78.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e2d78.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e2d78.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_e2d78.lib" /MACHINE:X64 /machine:x64 cmTC_e2d78.dir\Debug\CheckIncludeFile.obj

cmTC_e2d78.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_e2d78.exe

FinalizeBuildStatus:

Deleting file "cmTC_e2d78.dir\Debug\cmTC_e2d78.tlog\unsuccessfulbuild".

Touching "cmTC_e2d78.dir\Debug\cmTC_e2d78.tlog\cmTC_e2d78.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_e2d78.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.71

Determining if the include file d3d11_4.h exists passed with the following output: Change Dir: I:/opencv-master/build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/MSBuild/15.0/Bin/MSBuild.exe" "cmTC_059a7.vcxproj" "/p:Configuration=Debug" "/p:Platform=x64" "/p:VisualStudioVersion=15.0" Microsoft (R) Build Engine version 15.9.21+g9802d43bc3 for .NET Framework

Copyright (C) Microsoft Corporation. All rights reserved.

Build started 30-Jan-19 8:45:43 PM.

Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_059a7.vcxproj" on node 1 (default targets).

PrepareForBuild:

Creating directory "cmTC_059a7.dir\Debug\".

Creating directory "I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\".

Creating directory "cmTC_059a7.dir\Debug\cmTC_059a7.tlog\".

InitializeBuildStatus:

Creating "cmTC_059a7.dir\Debug\cmTC_059a7.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_059a7.dir\Debug\" /Fd"cmTC_059a7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27026.1 for x64

Copyright (C) Microsoft Corporation. All rights reserved.

cl /c /Zi /W3 /WX- /diagnostics:classic /MP8 /Od /Ob0 /Oi /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_059a7.dir\Debug\" /Fd"cmTC_059a7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue /bigobj "I:\opencv-master\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

CheckIncludeFile.c

Link:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:"I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_059a7.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_059a7.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"I:/opencv-master/build/CMakeFiles/CMakeTmp/Debug/cmTC_059a7.lib" /MACHINE:X64 /machine:x64 cmTC_059a7.dir\Debug\CheckIncludeFile.obj

cmTC_059a7.vcxproj -> I:\opencv-master\build\CMakeFiles\CMakeTmp\Debug\cmTC_059a7.exe

FinalizeBuildStatus:

Deleting file "cmTC_059a7.dir\Debug\cmTC_059a7.tlog\unsuccessfulbuild".

Touching "cmTC_059a7.dir\Debug\cmTC_059a7.tlog\cmTC_059a7.lastbuildstate".

Done Building Project "I:\opencv-master\build\CMakeFiles\CMakeTmp\cmTC_059a7.vcxproj" (default targets).

Build succeeded.

0 Warning(s)

0 Error(s)

Time Elapsed 00:00:00.62

https://github.com/opencv/opencv/issues/13733

https://stackoverflow.com/questions/54463295/multiple-errors-c1083-despite-the-correctness-of-path-and-rights