i had included the lib folder in the path and also added additional dependencies of all .dll . it actually contain opencv_core22.dll even then i am not able to debug.
↧
error during debug as opencv_core220.dll missing
↧
error in cmake while configuring opencv extra modules path
hi guys
i got this error while i'm configuring the opencv extra modules path and I didn't know what to do cause I tried everything I can.
hope I could find a solution here!
calib3d
core
> cudaarithm> cudabgsegm> cudacodec> cudafeatures2d> cudafilters> cudaimgproc> cudalegacy> cudaobjdetect> cudaoptflow> cudastereo> cudawarping> cudev
dnn
features2d
flann
highgui
imgcodecs
imgproc
java
js
ml
objdetect
photo
python> shape
stitching> superres
ts
video
videoio> videostab> viz
world
aruco
bgsegm
bioinspired
ccalib
cnn_3dobj> cudaarithm> cudabgsegm> cudacodec> cudafeatures2d> cudafilters> cudaimgproc> cudalegacy> cudaobjdetect> cudaoptflow> cudastereo> cudawarping> cudev
cvv
datasets
dnn_objdetect
dpm
face
freetype
fuzzy
hdf
hfs
img_hash
line_descriptor
matlab
optflow
ovis
phase_unwrapping
plot
reg
rgbd
saliency
sfm> shape
stereo
structured_light> superres
surface_matching
text
tracking> videostab> viz
xfeatures2d
ximgproc
xobjdetect
xphoto
CMake Error at cmake/OpenCVModule.cmake:354 (message):
Duplicated modules NAMES has been found
Call Stack (most recent call first):
cmake/OpenCVModule.cmake:372 (_assert_uniqueness)
modules/CMakeLists.txt:7 (ocv_glob_modules)
Configuring incomplete, errors occurred!
See also "E:/BAW/9raya ya rabbak/doctoral/bgslibrary-master/package_bgs/opencv-3.4.4/build/CMakeFiles/CMakeOutput.log".
See also "E:/BAW/9raya ya rabbak/doctoral/bgslibrary-master/package_bgs/opencv-3.4.4/build/CMakeFiles/CMakeError.log".
↧
↧
error with opencv librairies when I try a simple programm
[Screen-shot](/upfiles/15446463855147532.png)
package test;
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
public class test_cv
{
public static void main( String[] args )
{
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
Mat mat = Mat.eye( 3, 3, CvType.CV_8UC1 );
System.out.println( "mat = " + mat.dump() );
}
}
I don't know what's the problem wtih my program. I've just installed librairies of opencv on my USB key like on every other tutorial but there is an error that I can't explain. Could you help me please?
I've eclipse 2018-09 and the version 4.0.0 of opencv.
Sorry for the English I'm French.
↧
OpenCV DisplayImage Example Errors
Hello OpenCV Community,
I have been an OpenCV python user for a while, but I just started to use OpenCV C++ recently. I installed and tested OpenCV 4.0 following the protocols on https://docs.opencv.org/4.0.0/d7/d9f/tutorial_linux_install.html. The program passed the tests after installation and it seems that the installation was successful.
[----------] Global test environment tear-down
[==========] 10797 tests from 228 test cases ran. (385130 ms total)
[ PASSED ] 10797 tests.
YOU HAVE 10 DISABLED TESTS
However, when I started to do the DisplayImage example on https://docs.opencv.org/4.0.0/db/df5/tutorial_linux_gcc_cmake.html, I got errors.
The "DisplayImage.cpp" is exactly the same to the one in the tutorial. My "CMakeLists.txt file" is this:
cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
find_package( OpenCV REQUIRED )
include_directories( /usr/local/include/opencv4/ )
add_executable( DisplayImage DisplayImage.cpp )
target_link_libraries( DisplayImage /usr/local/lib )
The last few lines of the error is like this:
CMakeFiles/DisplayImage.dir/build.make:62: recipe for target 'CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o' failed
make[2]: *** [CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/DisplayImage.dir/all' failed
make[1]: *** [CMakeFiles/DisplayImage.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
Please provide some suggestions. Thank you very much.
#### Follow-up
I just output the stderror (~5000 lines) to file so I could see all the errors. In the first several lines of the error, it said:
[ 50%] Building CXX object CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o
In file included from /usr/local/include/opencv4/opencv2/core.hpp:52:0,
from /usr/local/include/opencv4/opencv2/opencv.hpp:52,
from /home/marine/Workspace/OpenCV_4_CPP/project/DisplayImage.cpp:2:
/usr/local/include/opencv4/opencv2/core/cvdef.h:654:4: error: #error "OpenCV 4.x+ requires enabled C++11 support"
# error "OpenCV 4.x+ requires enabled C++11 support"
^
In file included from /usr/include/c++/5/array:35:0,
from /usr/local/include/opencv4/opencv2/core/cvdef.h:659,
from /usr/local/include/opencv4/opencv2/core.hpp:52,
from /usr/local/include/opencv4/opencv2/opencv.hpp:52,
from /home/marine/Workspace/OpenCV_4_CPP/project/DisplayImage.cpp:2:
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
#error This file requires compiler and library support \
It seems that I don't have C++ 11 support.
I added "set (CMAKE_CXX_STANDARD 11)" to "CMakeLists.txt file". It seems that this is helpful. However, I got the following erros.
```
marine@Marine-Dell:~/Workspace/OpenCV_4_CPP/project$ make
[ 50%] Building CXX object CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o
[100%] Linking CXX executable DisplayImage
CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o: In function `main':
DisplayImage.cpp:(.text+0xa1): undefined reference to `cv::imread(std::__cxx11::basic_string, std::allocator> const&, int)'
DisplayImage.cpp:(.text+0x13f): undefined reference to `cv::namedWindow(std::__cxx11::basic_string, std::allocator> const&, int)'
DisplayImage.cpp:(.text+0x1b9): undefined reference to `cv::imshow(std::__cxx11::basic_string, std::allocator> const&, cv::_InputArray const&)'
DisplayImage.cpp:(.text+0x1f0): undefined reference to `cv::waitKey(int)'
CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o: In function `cv::Mat::~Mat()':
DisplayImage.cpp:(.text._ZN2cv3MatD2Ev[_ZN2cv3MatD5Ev]+0x39): undefined reference to `cv::fastFree(void*)'
CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o: In function `cv::Mat::release()':
DisplayImage.cpp:(.text._ZN2cv3Mat7releaseEv[_ZN2cv3Mat7releaseEv]+0x4b): undefined reference to `cv::Mat::deallocate()'
CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o: In function `cv::Mat::operator=(cv::Mat&&)':
DisplayImage.cpp:(.text._ZN2cv3MataSEOS0_[_ZN2cv3MataSEOS0_]+0xe7): undefined reference to `cv::fastFree(void*)'
collect2: error: ld returned 1 exit status
CMakeFiles/DisplayImage.dir/build.make:94: recipe for target 'DisplayImage' failed
make[2]: *** [DisplayImage] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/DisplayImage.dir/all' failed
make[1]: *** [CMakeFiles/DisplayImage.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
```
↧
Link error with opencv 4.01 on os x
Hi everybody, since opencv 4 I have a link issue with my program on os x. Do you have an idea ? We do not use cv:error at all !!! (See discussion: https://gitlab.com/free-astro/siril/issues/298)
20:02:35 g++-8 -I/usr/local/include -fopenmp -o siril main.o core/siril.o core/command.o core/undo.o core/utils.o core/processing.o core/initfile.o core/siril_update.o io/conversion.o io/ser.o io/films.o io/image_formats_libraries.o io/image_formats_internal.o io/image_format_fits.o io/sequence.o io/seqfile.o io/single_image.o io/mp4_output.o io/sequence_export.o gui/callbacks.o gui/histogram.o gui/save_dialog.o gui/PSF_list.o gui/sequence_list.o gui/registration_preview.o gui/statistics_list.o gui/script_menu.o gui/plot.o gui/gnuplot_i/gnuplot_i.o gui/progress_and_log.o registration/registration.o registration/global.o registration/matching/match.o registration/matching/atpmatch.o registration/matching/misc.o stacking/stacking.o stacking/sum.o stacking/normalization.o algos/gradient.o algos/quality.o algos/statistics.o algos/fft.o algos/colors.o algos/demosaicing.o algos/pave.o algos/transform.o algos/io_wave.o algos/reconstr.o algos/PSF.o algos/star_finder.o algos/cosmetic_correction.o algos/quantize.o algos/photometry.o compositing/compositing.o compositing/filters.o compositing/align_rgb.o io/avi_pipp/pipp_avi_write.o io/avi_pipp/pipp_avi_write_dib.o io/avi_pipp/pipp_buffer.o io/avi_pipp/avi_writer.o opencv/opencv.o opencv/ecc/ecc.o opencv/findHomography/fundam.o opencv/findHomography/calibration.o opencv/findHomography/modelest.o ../deps/kplot/libkplot.a -L/usr/local/Cellar/ffmpeg/4.1_1/lib -lavformat -lavutil -lavcodec -lswscale -lswresample -L/usr/local/Cellar/glib/2.58.2/lib -L/usr/local/opt/gettext/lib -L/usr/local/Cellar/cairo/1.16.0/lib -L/usr/local/Cellar/gdk-pixbuf/2.38.0/lib -L/usr/local/Cellar/pango/1.42.4/lib -L/usr/local/Cellar/atk/2.30.0/lib -L/usr/local/Cellar/gtk+3/3.24.2_1/lib -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lintl -Wl,-framework -Wl,CoreFoundation -L/usr/local/Cellar/glib/2.58.2/lib -L/usr/local/opt/gettext/lib -L/usr/local/Cellar/cairo/1.16.0/lib -L/usr/local/Cellar/gdk-pixbuf/2.38.0/lib -L/usr/local/Cellar/pango/1.42.4/lib -L/usr/local/Cellar/atk/2.30.0/lib -L/usr/local/Cellar/gtk+3/3.24.2_1/lib -L/usr/local/Cellar/gtk-mac-integration/2.1.3/lib -lgtkmacintegration-gtk3 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lintl -Wl,-framework -Wl,CoreFoundation -L/usr/local/Cellar/little-cms2/2.9/lib -L/usr/local/Cellar/libraw/0.19.0/lib -lraw -lstdc++ -llcms2 -L/usr/local/Cellar/libtiff/4.0.10/lib -ltiff -L/usr/local/Cellar/libpng/1.6.36/lib -lpng16 -lz -L/usr/local/Cellar/fftw/3.3.8/lib -lfftw3 -L/usr/local/Cellar/cfitsio/3.450_1/lib -lcfitsio -lpthread -lcurl -L/usr/local/Cellar/gsl/2.5/lib -lgsl -lgslcblas -lm -L/usr/local/Cellar/ffms2/2.23_2/lib -lffms2 -L/usr/local/Cellar/libconfig/1.7.2/lib -lconfig -lcurl -lopencv_core -lopencv_imgproc -lopencv_calib3d -ljpeg -lm
20:02:35 Undefined symbols for architecture x86_64:
20:02:35 "cv::error(int, std::__cxx11::basic_string, std::allocator> const&, char const*, char const*, int)", referenced from:
20:02:35 cv::Mat::Mat(int, int, int, void*, unsigned long) in opencv.o
20:02:35 cv::Mat::Mat(int, int, int, void*, unsigned long) in ecc.o
20:02:35 ld: symbol(s) not found for architecture x86_64
20:02:35 collect2: error: ld returned 1 exit status
20:02:35 make[1]: *** [siril] Error 1
20:02:35 make: *** [install-recursive] Error 1
↧
↧
error handling with imread()
Hello all, i am having a problem with the error handling in terms of the API "imread()". If i pass as command line a false file name, like "foobar" created randomly by "touch foobar" in bash. In my code i wrap the "imread()" into a try-catch block as follows:
cv:: Mat src;
try
{
src =imread(argv[1]);
}
catch( cv::Exception& e )
{
//const char* err_msg = e.what();
//std::cout << "exception caught: " << err_msg << std::endl;
cout <<"wrong file format, please input the name of an IMAGE file" < this->size() (which is 0)
Aborted (core dumped)
I know this message comes from c++ standard library and i can't change them, is there still any way to get rid of the error message? the program is aborted now, what i am expecting is that it goes into the catch block and print something that can be specified by the programmer, like "wrong file format, please input the name of an IMAGE file"?
Besides, i'm using xubuntu 18.04 and opencv 3.2.0, thanks in advance!
↧
Error compile C++ project on Ubuntu 16.04 (Netbeans) after accidently remove python3
I accidently remove python 3 on my Ubuntu. After reinstall Python3, compiling C++ projects get error as below
/usr/bin/ld: warning: libcudart.so.9.1, needed by /usr/local/lib/libopencv_core.so, not found (try using -rpath or -rpath-link) build/Debug/GNU-Linux/main.o: In function `main':
> /usr/local/lib/libopencv_core.so: undefined reference to `cudaHostGetDevicePointer@libcudart.so.9.1'
/usr/local/lib/libopencv_core.so: undefined reference to `cudaMemset2DAsync@libcudart.so.9.1'
/usr/local/lib/libopencv_core.so: undefined reference to `cudaGetErrorString@libcudart.so.9.1'
/usr/local/lib/libopencv_core.so: undefined reference to `cudaStreamSynchronize@libcudart.so.9.1> Blockquote
I checked and found, cuda 8.0 and 10.0. are present in usr/local/ but i don't know how to configure again.
Could you please advise me how to fix this error? I am using Netbeans
↧
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
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
↧
Application could not be started (0xc000003b)
OpenCV-Version: 3.4.3
IDE: MVS v.: 12.0.21005.1
Hello,
I am exausted... I cannot solve this problem:
I cannot execute my code. It is compiling fine, but when I try to start my program it shows this error message: "The application could not start correctly 0xc00003b..." I have reinstalled 3 different OpenCV versions, the path variable is set correctly and my code is a very simple example:
#include
#include
#include
#include
int main()
{
int x;
cv::Vec2b vector_test;
std::cout << "type a value for x" << std::endl;
std::cin >> x;
std::cout << "This is your x: " << x;
getch();
return 0;
}
OpenCv is properly installed since the test applications are running well... If I commend the
#include < opencv2/opencv.hpp > out the program is running fine.
I would very much appreciate any help
↧
↧
error compiling opencv 4.0.1 for qt 5.12.1
i get following error :> C:/Qt/Qt5.12.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe:> i386 architecture of input file> `CMakeFiles\opencv_core.dir/objects.a(vs_version.rc.obj)'> is incompatible with i386:x86-64> output collect2.exe: error: ld> returned 1 exit status> mingw32-make[2]: ***> [modules\core\CMakeFiles\opencv_core.dir\build.make:1481:> bin/libopencv_core401d.dll] Error 1> mingw32-make[1]: ***> [CMakeFiles\Makefile2:1398:> modules/core/CMakeFiles/opencv_core.dir/all]> Error 2 mingw32-make: ***> [Makefile:162: all] Error 2
↧
OpenCV Error: Insufficient memory (Failed to allocate 1440004 bytes) in cv::OutOfMemoryError
code
https://github.com/Jo-won/BOW-Train/blob/master/bowtrain_2019_03_10
OpenCV Error: Insufficient memory (Failed to allocate 1440004 bytes) in cv::OutOfMemoryError, file C:\build\2_4_winpack-build-win32-vc14\opencv\modules\core\src\alloc.cpp, line 52
-> this error was shown
In code, between line 407 and line 429, this error is blocking me.
Somebody help me..
↧
Can't run Goturn opencv api
I am following the steps given in https://www.learnopencv.com/goturn-deep-learning-based-object-tracking/ to use goturn tracker but I am getting the following error:
**cv2.error: OpenCV(4.0.1) ..\modules\dnn\src\caffe\caffe_io.cpp:1121: error: (-2:Unspecified error) FAILED: fs.is_open(). Can't open "goturn.prototxt" in function 'cv::dnn::ReadProtoFromTextFile'**
I have kept the goturn.caffemodel, goturn.prototxt in the same folder where my tracking.py file is.
I have already spent a lot of time searching ways to solve this but failed. Kindly respond asap.
↧
cannot open source file "opencv2\opencv.hpp"
Opencv have been working fine suddenly its not working anymore the source file is not opening. I tried updating the visual studio but it didn't work. I rechecked its **installation** and its fine too. Can u tell me what went wrong and how to fix it???
Description :
Visual studio 2017
opencv x64
↧
↧
libopencv_freetype.4.1.dylib version error
I have error while importing opencv 4.1 installed with conda (import cv2 in python): libopencv_freetype.4.1.dylib requires version 24.0.0 or later, but libfreetype.6.dylib provides version 23.0.0
But there is no libfreetype.6.dylib with version later than 23.0.17!
Here is VERSION.TXT from the latest freetype release - 2.10.0
**release - 2.10.0 libtool - 23.0.17 so - 6.17.0**
What I did wrong?
↧
compilation failed ___libm_sse2_sincos
Hi everybody,
I made an opencv project C++ on VS2019 with opencv 4. My system is windows 10.
I need to use the opencvworld static lib for my project so i recompiled opencv 4 sources with cmake with build_shared off and i get this error:
Erreur LNK2001 unresolved external symbol ___libm_sse2_sincos_ xx\..opencv_world410.lib(resize.obj) 1
Apparently IPP can be the rootcause so i've disabled WITH_IPP but it does not work, same error.
How to solve this issue?
Thanks to you.
↧
Error in findtransformECC
cv2.findTransformECC(grad1, grad2, warp_matrix, warp_mode, criteria)
TypeError: Required argument 'inputMask' (pos 6) not found
↧
java: symbol lookup error: undefined symbol: _ZN2cv3Mat20updateContinuityFlagEv
Hello,
Currently i am working on image processing application, where i am using opencv on Ubuntu 18.04.
I have compiled my C++ project it compiles and runs fine. But when i am trying to compile it with JNI it gets successfully compile, but when i try to run it using spring application i am getting the following error.
**java: symbol lookup error: /home/Demo/libSoFile.so: undefined symbol: _ZN2cv3Mat20updateContinuityFlagEv**
**Details about the libraries - opencv 3.4.3**
**O.S - Ubuntu 18.04**
**Java version - openjdk version "1.8.0_212"**
↧
↧
Is imread necessary in the sfm module?
I would thank if someone could help me with a linkage error.
I compiled opencv with the sfm module and now I am trying to run a simple example using the command:
g++ estimate_3d_points.cpp -o estimate_3d_points -std=c++11 -I/usr/local/include/opencv4 -L/usr/local/lib -lopencv_core -lopencv_imgproc -lopencv_highgui -lopencv_imgcodecs -lopencv_viz -lopencv_sfm
I have a linkage error:
/usr/bin/ld: /usr/local/lib/libopencv_sfm.so: undefined reference to `cv::imread(std::__cxx11::basic_string, std::allocator> const&, int)'
collect2: error: ld returned 1 exit status
Shouldn't opencv_codecs (where imread is) and opencv_fsm be two independent packages? How do I go around this?
↧
Errors while building
Hello everyone, so imported opencv in my visual studio, did all right but i get errors...
a Source.cpp
C:\Users\A\source\repos\opencv410\opencv410\Source.cpp(33,31): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
C:\Users\A\source\repos\opencv410\opencv410\Source.cpp(34,32): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
Creating library C:\Users\A\source\repos\opencv410\x64\Release\opencv410.lib and object C:\Users\A\source\repos\opencv410\x64\Release\opencv410.exp
Source.obj : error LNK2001: unresolved external symbol "void __cdecl cv::equalizeHist(class cv::_InputArray const &,class cv::_OutputArray const &)" (?equalizeHist@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@@Z)
Source.obj : error LNK2001: unresolved external symbol "public: virtual double __cdecl cv::VideoCapture::get(int)const " (?get@VideoCapture@cv@@UEBANH@Z)
Source.obj : error LNK2001: unresolved external symbol "public: virtual void __cdecl cv::VideoCapture::release(void)" (?release@VideoCapture@cv@@UEAAXXZ)
Source.obj : error LNK2001: unresolved external symbol "public: virtual bool __cdecl cv::VideoCapture::isOpened(void)const " (?isOpened@VideoCapture@cv@@UEBA_NXZ)
Source.obj : error LNK2001: unresolved external symbol "public: virtual bool __cdecl cv::VideoCapture::open(int,int)" (?open@VideoCapture@cv@@UEAA_NHH@Z)
Source.obj : error LNK2001: unresolved external symbol "public: virtual __cdecl cv::VideoCapture::~VideoCapture(void)" (??1VideoCapture@cv@@UEAA@XZ)
Source.obj : error LNK2001: unresolved external symbol "public: __cdecl cv::VideoCapture::VideoCapture(void)" (??0VideoCapture@cv@@QEAA@XZ)
Source.obj : error LNK2001: unresolved external symbol "void __cdecl cv::cvtColor(class cv::_InputArray const &,class cv::_OutputArray const &,int,int)" (?cvtColor@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@HH@Z)
Source.obj : error LNK2001: unresolved external symbol "public: void __cdecl cv::CascadeClassifier::detectMultiScale(class cv::_InputArray const &,class std::vector,class std::allocator>>&,double,int,int,class cv::Size_,class cv::Size_)" (?detectMultiScale@CascadeClassifier@cv@@QEAAXAEBV_InputArray@2@AEAV?$vector@V?$Rect_@H@cv@@V?$allocator@V?$Rect_@H@cv@@@std@@@std@@NHHV?$Size_@H@2@2@Z)
Source.obj : error LNK2001: unresolved external symbol "public: bool __cdecl cv::CascadeClassifier::load(class std::basic_string,class std::allocator> const &)" (?load@CascadeClassifier@cv@@QEAA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
Source.obj : error LNK2001: unresolved external symbol "public: __cdecl cv::CascadeClassifier::~CascadeClassifier(void)" (??1CascadeClassifier@cv@@QEAA@XZ)
Source.obj : error LNK2001: unresolved external symbol "public: __cdecl cv::CascadeClassifier::CascadeClassifier(void)" (??0CascadeClassifier@cv@@QEAA@XZ)
Source.obj : error LNK2001: unresolved external symbol "void __cdecl cv::ellipse(class cv::_InputOutputArray const &,class cv::Point_,class cv::Size_,double,double,double,class cv::Scalar_ const &,int,int,int)" (?ellipse@cv@@YAXAEBV_InputOutputArray@1@V?$Point_@H@1@V?$Size_@H@1@NNNAEBV?$Scalar_@N@1@HHH@Z)
Source.obj : error LNK2001: unresolved external symbol "void __cdecl cv::resize(class cv::_InputArray const &,class cv::_OutputArray const &,class cv::Size_,double,double,int)" (?resize@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@V?$Size_@H@1@NNH@Z)
C:\Users\A\source\repos\opencv410\x64\Release\opencv410.dll : fatal error LNK1120: 14 unresolved externals
trying to solve it for day i ran out of ideas...
when i build only with
#include
#include
I get successful build ...
but with this code i get errors...
#include "opencv2/objdetect.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include
#include
using namespace std;
using namespace cv;
// Declare structure to be used to pass data from C++ to Mono.
struct Circle
{
Circle(int x, int y, int radius) : X(x), Y(y), Radius(radius) {}
int X, Y, Radius;
};
CascadeClassifier _faceCascade;
String _windowName = "Unity OpenCV Interop Sample";
VideoCapture _capture;
int _scale = 1;
extern "C" int __declspec(dllexport) __stdcall Init(int& outCameraWidth, int& outCameraHeight)
{
// Load LBP face cascade.
if (!_faceCascade.load("lbpcascade_frontalface.xml"))
return -1;
// Open the stream.
_capture.open(0);
if (!_capture.isOpened())
return -2;
outCameraWidth = _capture.get(CAP_PROP_FRAME_WIDTH);
outCameraHeight = _capture.get(CAP_PROP_FRAME_HEIGHT);
return 0;
}
extern "C" void __declspec(dllexport) __stdcall Close()
{
_capture.release();
}
extern "C" void __declspec(dllexport) __stdcall SetScale(int scale)
{
_scale = scale;
}
extern "C" void __declspec(dllexport) __stdcall Detect(Circle* outFaces, int maxOutFacesCount, int& outDetectedFacesCount)
{
Mat frame;
_capture >> frame;
if (frame.empty())
return;
std::vector faces;
// Convert the frame to grayscale for cascade detection.
Mat grayscaleFrame;
cvtColor(frame, grayscaleFrame, COLOR_BGR2GRAY);
Mat resizedGray;
// Scale down for better performance.
resize(grayscaleFrame, resizedGray, Size(frame.cols / _scale, frame.rows / _scale));
equalizeHist(resizedGray, resizedGray);
// Detect faces.
_faceCascade.detectMultiScale(resizedGray, faces);
// Draw faces.
for (size_t i = 0; i < faces.size(); i++)
{
Point center(_scale * (faces[i].x + faces[i].width / 2), _scale * (faces[i].y + faces[i].height / 2));
ellipse(frame, center, Size(_scale * faces[i].width / 2, _scale * faces[i].height / 2), 0, 0, 360, Scalar(0, 0, 255), 4, 8, 0);
// Send to application.
outFaces[i] = Circle(faces[i].x, faces[i].y, faces[i].width / 2);
outDetectedFacesCount++;
if (outDetectedFacesCount == maxOutFacesCount)
break;
}
// Display debug output.
imshow(_windowName, frame);
}
↧
Make error __atomic_fetch_add_8 on RaspberryPi4
Hello,
I've been trying to compile OpenCV 4.1.1 on my RaspberryPi 4 running Rasbian Buster with Python 3.7. I use the following command for cmake running inside a build folder under opencv (as described here:https://www.pyimagesearch.com/2018/09/26/install-opencv-4-on-your-raspberry-pi/?submitted_comment=1#comment-525813):
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D OPENCV_EXTRA_MODULES_PATH=/home/pi/share/CameraWork/opencv_contrib/modules -D ENABLE_NEON=ON -D ENABLE_VFPV3=ON -D BUILD_TESTS=OFF -D OPENCV_ENABLE_NONFREE=ON -D INSTALL_PYTHON_EXAMPLES=OFF -D BUILD_EXAMPLES=OFF -D ENABLE_NOISY_WARNINGS=ON -D ENABLE_PRECOMPILED_HEADERS=OFF ..
However I keep getting the following errors when make moves on to make opencv_perf_core:
/usr/bin/ld: ../../lib/libopencv_core.so.4.1.1: undefined reference to `__atomic_fetch_add_8'
/usr/bin/ld: ../../lib/libopencv_core.so.4.1.1: undefined reference to `__atomic_fetch_sub_8'
/usr/bin/ld: ../../lib/libopencv_core.so.4.1.1: undefined reference to `__atomic_store_8'
/usr/bin/ld: ../../lib/libopencv_core.so.4.1.1: undefined reference to `__atomic_load_8'
/usr/bin/ld: ../../lib/libopencv_core.so.4.1.1: undefined reference to `__atomic_compare_exchange_8'
collect2: error: ld returned 1 exit status
make[2]: *** [modules/core/CMakeFiles/opencv_perf_core.dir/build.make:541: bin/opencv_perf_core] Error 1
make[1]: *** [CMakeFiles/Makefile2:2597: modules/core/CMakeFiles/opencv_perf_core.dir/all] Error 2
make: *** [Makefile:163: all] Error 2
Has anyone come across any similar trouble? Do you have any suggestions?
Thanks in advance.
↧