Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all 41027 articles
Browse latest View live

Horizontal projection of area between 2 circles

$
0
0
I use OpenCV library with python. I would like to make an horizontal projection of area between two circles. As show in image below. ![image description](/upfiles/15592240188046945.jpg)

how to scan a document in xamarin forms

$
0
0
i need to add a scan functionality for my app. anyone have idea about that

Generalized Hough Transform (Guill)

$
0
0
I am using the GPU version of GeneralizedHough (Guill specifically). For those thinking of using the GHT, the good news is that the GPU version is MUCH faster than the CPU version. On my sample images, the CPU version takes ~70 seconds. With the same parameters, the GPU version takes ~0.3 seconds. That said, I do not see much documentation and I am hoping that someone can explain a few things to me. I have four questions: **1) What does each point in the output point vector represent?** The returned vector has a series of points, for each point, there is the point itself ([0], [1]), and then a scale and a rotation ([2], [3]). But what does the point represent? Is it a point in the query image that represents the bottom/left (or top/right, center point, point on the contour of) of the template image? **2) Would it improve the results/speed if the template image was a bounding box of the enclosed contours?** My template image has a single contour in it that is much smaller than the whole image. Would it affect things if I reduced the template image size to the size of the boundRect of the included contour? **3) In the Guill version, how does the PositionVotesThreshold affect things?** If I increase this number will I be forcing it to find better matches? **4) Given a point in the template image, and a returned point from GHT, how can I calculate the corresponding point in the query image?** In my application, I figure out a point on the interior of the contour of the template image. How can I calculate the corresponding point in the template image? I am hoping that answers to these questions will be useful to anyone trying to use GHT (which seems great). Thanks for any help.

Install opencv with opencv_contrib in linux

$
0
0
Is there anyone knows that where will the extra modules in opencv_contrib be include in the source opencv pack?(build for c++) I have make install with no error. But I still can't find the extra modules(ex.ximgproc) in opencv/include/opencv2 or is it just that i'm failed installing it?

I trained cifar example by darknet. How do I inference by Opencv

$
0
0
##### System information (version) - OpenCV => 3.4.5 - Operating System / Platform => Windows 10 64 Bit - Compiler => Visual Studio 2015. I trained cifar example by darknet. I have weights file and configuration file. what parameters I have to give the blobFromImage. what parameter I have to give to net.setInput. what parameter I have to give to net.forward. waht way do I get the out put. Thanks.

How to detect clock drawing?

$
0
0
How can a hand drawn clock be analyzed to see whether or not it was drawn correctly? Some examples of why it would be drawn incorrectly are the numbers being in the wrong locations, the circle not enclosing the numbers and the numbers not existing.

Unable to convert mat to bitmap

$
0
0
hi, i am not able to convert mat to bitmap in the below code. can any one tell me what wrong i am doing here. here is the code :- Mat rgb = new Mat (); Mat rgb32f = new Mat(); Mat gry = new Mat (); Mat imfilter = new Mat (height, width, CvType.CV_32F, new Scalar(4)); Mat res = new Mat(); Bitmap bmp = t1.copy(Bitmap.Config.ARGB_8888, true); Utils.bitmapToMat(bmp, rgb); rgb.convertTo(rgb32f, CvType.CV_32F); Mat mu = new Mat(); Size ksize = new Size(5,5); Imgproc.blur(rgb32f, mu,ksize); Mat mu2 = new Mat(); Imgproc.blur(rgb32f.mul(rgb32f), mu2, ksize); Mat sigma = new Mat(); Core.sqrt(mu2, sigma); Core.normalize(sigma, gry, 0.0, 1.0, Core.NORM_MINMAX); Bitmap scale = Bitmap.createBitmap(gry.cols(), gry.rows(), Bitmap.Config.ARGB_8888); Utils.matToBitmap(gry, scale); Error comes in the last line Utils.matToBitmap() function. here is logcat :- 10-30 21:23:27.999: E/cv::error()(8900): OpenCV Error: Assertion failed (src.dims == 2 && info.height == (uint32_t)src.rows && info.width == (uint32_t)src.cols) in void Java_org_opencv_android_Utils_nMatToBitmap2(JNIEnv*, jclass, jlong, jobject, jboolean), file /home/reports/ci/slave_desktop/50-SDK/opencv/modules/java/generator/src/cpp/utils.cpp, line 97 10-30 21:23:28.009: E/org.opencv.android.Utils(8900): nMatToBitmap catched cv::Exception: /home/reports/ci/slave_desktop/50-SDK/opencv/modules/java/generator/src/cpp/utils.cpp:97: error: (-215) src.dims == 2 && info.height == (uint32_t)src.rows && info.width == (uint32_t)src.cols in function void Java_org_opencv_android_Utils_nMatToBitmap2(JNIEnv*, jclass, jlong, jobject, jboolean) 10-30 21:23:28.009: W/dalvikvm(8900): threadid=1: thread exiting with uncaught exception (group=0x41bb3798) 10-30 21:23:28.009: E/AndroidRuntime(8900): FATAL EXCEPTION: main 10-30 21:23:28.009: E/AndroidRuntime(8900): CvException [org.opencv.core.CvException: /home/reports/ci/slave_desktop/50-SDK/opencv/modules/java/generator/src/cpp/utils.cpp:97: error: (-215) src.dims == 2 && info.height == (uint32_t)src.rows && info.width == (uint32_t)src.cols in function void Java_org_opencv_android_Utils_nMatToBitmap2(JNIEnv*, jclass, jlong, jobject, jboolean)

CascadeClassifier doesn't work with model.xml trained by myself. It always blocked when use method detectMultiScale()

$
0
0
I have built opencv from source detached at 3.4.6. And then I use /path_opencv_built/bin/opencv_traincascade to train a cascadeclassifier.xml. opencv_createsamples -info pos.txt -num 10000 -w 100 -h 100 -vec pos.vec opencv_traincascade -data data -vec pos.vec -bg neg.txt -numPos 9000 -numNeg 100 -w 24 -h 24 -numStages 15 I thought it should be right because I have got reasonable output. PARAMETERS: cascadeDirName: data vecFileName: pos.vec bgFileName: neg.txt numPos: 9000 numNeg: 100 numStages: 15 precalcValBufSize[Mb] : 1024 precalcIdxBufSize[Mb] : 1024 acceptanceRatioBreakValue : -1 stageType: BOOST featureType: HAAR sampleWidth: 24 sampleHeight: 24 boostType: GAB minHitRate: 0.995 maxFalseAlarmRate: 0.5 weightTrimRate: 0.95 maxDepth: 1 maxWeakCount: 100 mode: BASIC Number of unique features given windowSize [24,24] : 162336 ===== TRAINING 0-stage ===== Training until now has taken 0 days 0 hours 12 minutes 4 seconds. ... ... ===== TRAINING 14-stage ===== Training until now has taken 0 days 1 hours 41 minutes 42 seconds. And I have got files. (cascade.xml params.xml stage0.xml stage1.xml stage10.xml stage11.xml stage12.xml stage13.xml stage14.xml stage2.xml stage3.xml stage4.xml stage5.xml stage6.xml stage7.xml stage8.xml stage9.xml) But when I use the cascade.xml, I always blocked using the method detectMultiScale(), without any responses even ctrl+c didn't work. BTW, it runs well when I use origin haarcascade_fullbody.xml. I just don't know where the problem is. My code shows below. import cv2 import time model_haar = cv2.CascadeClassifier("cascade.xml") cam = cv2.VideoCapture('video.mp4') print("load success.") while True: _, img = cam.read() gray_img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) print("read image") t0 = time.time() result = model_haar.detectMultiScale(gray_img) print(time.time() - t0) for resule_x, result_y, result_w, result_h in result: cv2.rectangle(img, (resule_x, result_y), (resule_x + result_w, result_y + result_h), (255, 0, 255), 2) cv2.imshow('img', img) key = cv2.waitKey(30) & 0xff if key == ord('q'): break cam.release() cv2.destroyAllWindows() it block at "result = model_haar.detectMultiScale(gray_img)", I telled that because it never reach "print(time.time() - t0)", and no any responses with ctrl+c. Thanks for any advice~

why openCV is not properly installing ?

$
0
0
![image description](/upfiles/15597214509109257.png) this problem occurring while installation of the openCV while i've followed each step correctly and reinstalled it more than 4 times on different locations in my laptop.

OpenCVTestCase refactoring

$
0
0
As you know, there are two OpenCVTestCase, one in `android_test` and another in `pure_test`, and as hinted in the latter, they should be merged (or renamed and one subclasses another). I see that also `OpenCVTestRunner` is in two places, but one is android-related, while the other is in `build.xml` as `Main-Class` but it doesn't have `main(String [])` On the other hand, `TestRunner` has somewhat different meaning in [JUnit](https://github.com/junit-team/junit4/wiki/test-runners) - What is the difference between `pure_test` and `common_test`? How about: - Rename the `pure_test` `OpenCVTestRunner` to OpenCVUtils - Remove `pure_test` `OpenCVTestCase` and use its logic of loading `lena.png`, `checkkboard.jpg` and `lbpcascade_frontalface.xml` to `android_test` `OpenCVTestCase`

how i run example_rgbd_kinfu_demo.exe

$
0
0
it needs arguments: --depth Path to depth.txt file listing a set of depth images --record Write depth frames to specified file list (the same format as for the 'depth' key) how i list depth images in depth.txt?

I have trouble in finding the circular grid using the function cv.findCirclesGrid

$
0
0
My link to image is https://drive.google.com/open?id=1Leg6tffN9DJZ-TJJgwoaa-StJktp2x05. My code is ++++++++++++++++++++++++++++++++ I=imread('Pattern4.png'); obj = cv.SimpleBlobDetector('MinThreshold',10,'MaxThreshold',255,'ThresholdStep',10,'FilterByColor',true,'BlobColor',255); keypoints = obj.detect(I2); im_with_keypoints = cv.drawKeypoints(I2, keypoints,'DrawRichKeypoints',true); im_with_keypoints_gray = cv.cvtColor(im_with_keypoints,'RGB2GRAY'); imshow(im_with_keypoints) [ret,corners] = cv.findCirclesGrid(im_with_keypoints,[2,2]); +++++++++++++++++++++++++++++ Please tell me why i cannot detect the circular grid?

Android Studio how integrate NDK with Opencv

$
0
0
How to Intregrate an OpenCv with NDK? i have make changes cmlists.txt I Got Error Execution failed for task ':app:externalNativeBuildDebug'. > Build command failed. Error while executing process C:\Users\Lenovo\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe with arguments {--build C:\Users\Lenovo\Pictures\jp\crop\CricleDection\app\.externalNativeBuild\cmake\debug\armeabi-v7a --target native-lib} [1/2] Building CXX object CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o FAILED: CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o C:\Users\Lenovo\AppData\Local\Android\sdk\ndk-bundle\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/Lenovo/AppData/Local/Android/sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/Lenovo/AppData/Local/Android/sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dnative_lib_EXPORTS -I/sdk/native/jni/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mfpu=vfpv3-d16 -fno-addrsig -march=armv7-a -mthumb -Wa,--noexecstack -Wformat -Werror=format-security -stdlib=libc++ -std=c++11 -frtti -fexceptions -std=gnu++11 -O0 -fno-limit-debug-info -fPIC -MD -MT CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -MF CMakeFiles\native-lib.dir\src\main\cpp\native-lib.cpp.o.d -o CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -c ../../../../src/main/cpp/native-lib.cpp ../../../../src/main/cpp/native-lib.cpp:3:10: fatal error: 'opencv2/core/core.hpp' file not found #include My Cmlists.txt cmake_minimum_required(VERSION 3.4.1) set(pathToOpenCV /C:/Users/Lenovo/Pictures/jp/opcv/3.4.3/OpenCV-android-sdk/sdk/native) include_directories(${pathToOpenCV}/jni/include) add_library( # Sets the name of the library. native-lib src/main/cpp/native-lib.cpp ) add_library( lib_opencv SHARED IMPORTED ) set_target_properties(lib_opencv PROPERTIES IMPORTED_LOCATION /C:/Users/Lenovo/Pictures/jp/crop/Native/app/src/main/jniLibs/${ANDROID_ABI}/libopencv_java3.so) find_library(log-lib log ) target_link_libraries( native-lib ${log-lib} lib_opencv) #EDIT

C++ CV::Mat.at(0) in Java

$
0
0
I'm currently converting the code from this answer([How to make auto-adjustments(brightness and contrast) for image Android Opencv Image Correction](https://answers.opencv.org/question/75510/how-to-make-auto-adjustmentsbrightness-and-contrast-for-image-android-opencv-image-correction/?answer=75797#post-id-75797)) In this answer, the following statement is used: accumulator[0] = hist.at(0); After reading some documentation and code snippets I can't seem to figure out how I should translate this statement to Java. Does someone know how this would be written in Java? Tom,

Assertion failed: abs_max < threshold in function 'stereoCalibrate'

$
0
0
Hi, I had a stereo calibration pipeline built for regular (non fisheye) lenses that was working just fine (based on `cv2.stereoCalibrate()`, etc.). Now I'm trying to adapt this procedure to fisheye cameras, using the corresponding `fisheye` API. I incurred in other errors related to the shape of objectPoints and imagePoints, but apparently those were solved and individual camera calibration with `cv2.fisheye.calibrate()` seems to be working. Next, I moved to calibrating the fisheye camera rig, however, I'm stuck on the following error from `cv2.fisheye.stereoCalibrate()`: cv2.error: OpenCV(4.1.0) /home/massimo/repositories/opencv-4.1.0/modules/calib3d/src/fisheye.cpp:1023: error: (-215:Assertion failed) abs_max < threshold in function 'stereoCalibrate' originating from the following failed assertion in `fisheye.cpp`: CV_Assert(abs_max < threshold); // bad stereo pair According to the solution suggested in [#67855](https://answers.opencv.org/question/67855/opencv-error-assertion-failed-abs_max-threshold-in-stereocalibrate/) for the same error, I tried to use different subsets of the calibration images or even individual images, hoping to identify the image(s) causing the issue. However, all combinations I tried resulted in the same error. Besides, upon visual inspection the images look fine. I'm trying to figure out why `cv2.fisheye.stereoCalibrate()` rejects all images, but I don't understand how the assertion is evaluated and on what basis it determines that a stereo pair is bad. Any idea on how to get rid of this error? Thanks in advance! ---------- Relevant system specifications: - Ubuntu 18.04.2 - Python 3.6.7 - OpenCV 4.1.0 (compiled from source)

vec3b has more than 3 elements?

$
0
0
I was using imread to load a 3-channel png image and accessing the bgr pixel values through: image.at(x,y)[0] image.at(x,y)[1] image.at(x,y)[2] However, I found that vec3b[n] (n>=3) also contain some values. Any ideas on what these values indicate? Shouldn't vec3b only contain three values representing bgr channels?

Install OpenCV with SIFT on Windows 10

$
0
0
Hello, I'm trying to compile OpenCV and OpenCV-Contrib for Windows 10 x64 using Visual Studio 2019 and Anaconda Python 3.7 but I get the following error: Compilation failed: source file: 'C:/Users/Ossama/Downloads/Compressed/opencv/opencv/cmake/checks/cpu_avx512.cpp' check option: ' ' ===== BUILD LOG ===== Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bbddb.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 cpu_avx512.cpp Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_bbddb.dir\Debug\\" /Fd"cmTC_bbddb.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\opencv\cmake\checks\cpu_avx512.cpp C:\Users\Ossama\Downloads\Compressed\opencv\opencv\cmake\checks\cpu_avx512.cpp(11,1): error C1189: #error: "AVX512 is not supported" [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_bbddb.vcxproj] ===== END ===== Compilation failed: source file: 'C:/Users/Ossama/Downloads/Compressed/opencv/opencv/cmake/checks/cpu_avx512skx.cpp' check option: ' ' ===== BUILD LOG ===== Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_8a6aa.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 cpu_avx512skx.cpp Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_8a6aa.dir\Debug\\" /Fd"cmTC_8a6aa.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\opencv\cmake\checks\cpu_avx512skx.cpp C:\Users\Ossama\Downloads\Compressed\opencv\opencv\cmake\checks\cpu_avx512skx.cpp(15,1): error C1189: #error: "AVX512-SKX is not supported" [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_8a6aa.vcxproj] ===== END ===== Determining if the function fseeko exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_9346a.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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=fseeko /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9346a.dir\Debug\\" /Fd"cmTC_9346a.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol fseeko referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_9346a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\Debug\cmTC_9346a.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_9346a.vcxproj] Determining size of off64_t failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_a2094.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 OFF64_T.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_a2094.dir\Debug\\" /Fd"cmTC_a2094.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c(25,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_a2094.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c(26,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_a2094.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c(27,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_a2094.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c(28,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_a2094.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CheckTypeSize\OFF64_T.c(29,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_a2094.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CheckTypeSize/OFF64_T.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(off64_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining if the function memmove exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_64f30.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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=memmove /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_64f30.dir\Debug\\" /Fd"cmTC_64f30.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c(7,30): warning C4391: 'char memmove(void)': incorrect return type for intrinsic function, expected 'void' [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_64f30.vcxproj] C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c(7,30): warning C4392: 'char memmove(void)': incorrect number of arguments for intrinsic function, expected '3' arguments [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_64f30.vcxproj] C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c(17,25): error C2168: 'memmove': too few actual parameters for intrinsic function [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_64f30.vcxproj] Determining if the function strcasecmp exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_db6ef.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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=strcasecmp /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_db6ef.dir\Debug\\" /Fd"cmTC_db6ef.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol strcasecmp referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_db6ef.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\Debug\cmTC_db6ef.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_db6ef.vcxproj] Determining if the function sgemm_ exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_6f65d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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=sgemm_ /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_6f65d.dir\Debug\\" /Fd"cmTC_6f65d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol sgemm_ referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_6f65d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\Debug\cmTC_6f65d.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_6f65d.vcxproj] Determining if the include file pthread.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_676a1.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_676a1.dir\Debug\\" /Fd"cmTC_676a1.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_676a1.vcxproj] Determining if the CL_VERSION_2_2 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c1c8c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_c1c8c.dir\Debug\\" /Fd"cmTC_c1c8c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_c1c8c.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_2_2 return ((int*)(&CL_VERSION_2_2))[argc]; #else (void)argc; return 0; #endif } Determining if the CL_VERSION_2_1 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_556ec.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_556ec.dir\Debug\\" /Fd"cmTC_556ec.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_556ec.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_2_1 return ((int*)(&CL_VERSION_2_1))[argc]; #else (void)argc; return 0; #endif } Determining if the CL_VERSION_2_0 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_72366.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_72366.dir\Debug\\" /Fd"cmTC_72366.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_72366.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_2_0 return ((int*)(&CL_VERSION_2_0))[argc]; #else (void)argc; return 0; #endif } Determining if the CL_VERSION_1_2 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_52971.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_52971.dir\Debug\\" /Fd"cmTC_52971.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_52971.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_1_2 return ((int*)(&CL_VERSION_1_2))[argc]; #else (void)argc; return 0; #endif } Determining if the CL_VERSION_1_1 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_df4c2.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_df4c2.dir\Debug\\" /Fd"cmTC_df4c2.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_df4c2.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_1_1 return ((int*)(&CL_VERSION_1_1))[argc]; #else (void)argc; return 0; #endif } Determining if the CL_VERSION_1_0 exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2afef.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /MP4 /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_2afef.dir\Debug\\" /Fd"cmTC_2afef.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue /bigobj C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'OpenCL_INCLUDE_DIR-NOTFOUND/CL/cl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\build\CMakeFiles\CMakeTmp\cmTC_2afef.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef CL_VERSION_1_0 return ((int*)(&CL_VERSION_1_0))[argc]; #else (void)argc; return 0; #endif } I tried to compile VTK and I get the error: Performing C++ SOURCE FILE Test Support for 64 bit file systems failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_0f19f.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 src.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CMAKE_REQUIRE_LARGE_FILE_SUPPORT /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_0f19f.dir\Debug\\" /Fd"cmTC_0f19f.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(13,6): warning C4293: '<<': shift count negative or too big, undefined behavior [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(13,33): warning C4127: conditional expression is constant [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(13,33): message : consider using 'if constexpr' statement instead [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(19,8): error C3861: 'S_ISREG': identifier not found [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(23,18): error C3861: 'ftello': identifier not found [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(22,1): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdio.h(208): message : see declaration of 'fopen' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0f19f.vcxproj] Source file was: #define _LARGEFILE_SOURCE #define _LARGE_FILES #define _FILE_OFFSET_BITS 64 #include #include #include #include int main( int, char **argv ) { // check that off_t can hold 2^63 - 1 and perform basic operations... #define OFF_T_64 (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) if (OFF_T_64 % 2147483647 != 1) return 1; // stat breaks on SCO OpenServer struct stat buf; stat( argv[0], &buf ); if (!S_ISREG(buf.st_mode)) return 2; FILE *file = fopen( argv[0], "r" ); off_t offset = ftello( file ); fseek( file, offset, SEEK_CUR ); fclose( file ); return 0; } Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_88a5c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 src.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D COMPILER_HAS_DEPRECATED_ATTR /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_88a5c.dir\Debug\\" /Fd"cmTC_88a5c.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(1,16): error C2065: '__deprecated__': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_88a5c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(1,31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_88a5c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.cxx(1,37): error C2448: '__attribute__': function-style initializer appears to be a function definition [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_88a5c.vcxproj] Source file was: __attribute__((__deprecated__)) int somefunc() { return 0; } int main() { return somefunc();} Checking whether long and __int64 are the same type failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_eefb9.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_SAME_LONG_AND___INT64 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_eefb9.dir\Debug\\" /Fd"cmTC_eefb9.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(70,13): error C2664: 'void function(long **)': cannot convert argument 1 from '__int64 **' to 'long **' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_eefb9.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(70,12): message : Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_eefb9.vcxproj] Checking whether C compiler has ssize_t in unistd.h failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_76a9c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. kwsysPlatformTestsC.c cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_C_HAS_SSIZE_T /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_76a9c.dir\Debug\\" /Fd"cmTC_76a9c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsC.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsC.c(46,12): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_76a9c.vcxproj] Checking whether C compiler has clock_gettime failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c2771.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsC.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_C_HAS_CLOCK_GETTIME_MONOTONIC /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c2771.dir\Debug\\" /Fd"cmTC_c2771.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsC.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsC.c(69,23): warning C4013: 'clock_gettime' undefined; assuming extern returning int [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_c2771.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsC.c(69,39): error C2065: 'CLOCK_MONOTONIC': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_c2771.vcxproj] Checking whether CXX compiler has setenv failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ff0f9.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_SETENV /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_ff0f9.dir\Debug\\" /Fd"cmTC_ff0f9.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(143,10): error C3861: 'setenv': identifier not found [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_ff0f9.vcxproj] Checking whether CXX compiler has unsetenv failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_eb6c0.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_UNSETENV /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_eb6c0.dir\Debug\\" /Fd"cmTC_eb6c0.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(151,3): error C3861: 'unsetenv': identifier not found [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_eb6c0.vcxproj] Checking whether CXX compiler has utimes failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_a666d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_UTIMES /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_a666d.dir\Debug\\" /Fd"cmTC_a666d.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(215,12): error C1083: Cannot open include file: 'sys/time.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_a666d.vcxproj] Checking whether CXX compiler has utimensat failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_cb44e.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_UTIMENSAT /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_cb44e.dir\Debug\\" /Fd"cmTC_cb44e.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(234,30): error C2079: 'times' uses undefined struct 'main::timespec' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(234,37): error C2065: 'UTIME_OMIT': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(234,56): error C2065: 'UTIME_NOW': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(234,68): error C2440: 'initializing': cannot convert from 'initializer list' to 'int' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(234,30): message : The initializer contains too many elements [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(235,20): error C2065: 'AT_FDCWD': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(235,49): error C2065: 'AT_SYMLINK_NOFOLLOW': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(235,10): error C3861: 'utimensat': identifier not found [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_cb44e.vcxproj] Checking whether CXX compiler struct stat has st_mtim member failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c80d5.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_STAT_HAS_ST_MTIM /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_c80d5.dir\Debug\\" /Fd"cmTC_c80d5.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(39,12): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_c80d5.vcxproj] Checking whether CXX compiler struct stat has st_mtimespec member failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_23ac0.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. kwsysPlatformTestsCXX.cxx cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_STAT_HAS_ST_MTIMESPEC /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_23ac0.dir\Debug\\" /Fd"cmTC_23ac0.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(53,12): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_23ac0.vcxproj] Determining if files sys/types.h;ifaddrs.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_1d7d2.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 KWSYS_SYS_HAS_IFADDRS_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_1d7d2.dir\Debug\\" /Fd"cmTC_1d7d2.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\KWSYS_SYS_HAS_IFADDRS_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\KWSYS_SYS_HAS_IFADDRS_H.c(3,10): error C1083: Cannot open include file: 'ifaddrs.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d7d2.vcxproj] Source: /* */ #include #include int main(void){return 0;} Checking whether CXX compiler has rlimit64 failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c4648.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_RLIMIT64 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_c4648.dir\Debug\\" /Fd"cmTC_c4648.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(179,12): error C1083: Cannot open include file: 'sys/resource.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_c4648.vcxproj] Checking whether is available failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_b025b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 kwsysPlatformTestsCXX.cxx Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W4 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_b025b.dir\Debug\\" /Fd"cmTC_b025b.dir\Debug\vc142.pdb" /Gd /TP /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx C:\Users\Ossama\Downloads\Compressed\opencv\vtk\Utilities\KWSys\vtksys\kwsysPlatformTestsCXX.cxx(330,12): error C1083: Cannot open include file: 'ext/stdio_filebuf.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\Utilities\KWSys\vtksys\CMakeFiles\CMakeTmp\cmTC_b025b.vcxproj] Determining if the include file pthread.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_f0b42.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_f0b42.dir\Debug\\" /Fd"cmTC_f0b42.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_f0b42.vcxproj] Determining if the finite exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_6c850.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_6c850.dir\Debug\\" /Fd"cmTC_6c850.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,25): error C2065: 'finite': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_6c850.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef finite return ((int*)(&finite))[argc]; #else (void)argc; return 0; #endif } Determining if the feenableexcept exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ca8f1.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _GNU_SOURCE /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ca8f1.dir\Debug\\" /Fd"cmTC_ca8f1.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,33): error C2065: 'feenableexcept': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_ca8f1.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef feenableexcept return ((int*)(&feenableexcept))[argc]; #else (void)argc; return 0; #endif } Determining if the function getsockname exists in the socket failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_58f38.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=getsockname /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_58f38.dir\Debug\\" /Fd"cmTC_58f38.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" LINK : fatal error LNK1104: cannot open file 'socket.lib' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_58f38.vcxproj] Determining if the SO_REUSEADDR exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_e978d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_e978d.dir\Debug\\" /Fd"cmTC_e978d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(3,10): error C1083: Cannot open include file: 'sys/socket.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e978d.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include int main(int argc, char** argv) { (void)argv; #ifndef SO_REUSEADDR return ((int*)(&SO_REUSEADDR))[argc]; #else (void)argc; return 0; #endif } Determining size of off64_t failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_db2e8.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 OFF64_T.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _LARGEFILE64_SOURCE=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_db2e8.dir\Debug\\" /Fd"cmTC_db2e8.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c(25,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_db2e8.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c(26,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_db2e8.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c(27,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_db2e8.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c(28,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_db2e8.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\OFF64_T.c(29,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_db2e8.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/OFF64_T.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(off64_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining if the include file unistd.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c2ba4.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_c2ba4.dir\Debug\\" /Fd"cmTC_c2ba4.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_c2ba4.vcxproj] Performing C SOURCE FILE Test HAVE_LD_VERSION_SCRIPT failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c1861.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D HAVE_LD_VERSION_SCRIPT /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c1861.dir\Debug\\" /Fd"cmTC_c1861.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -Wl,--version-script=C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/ThirdParty/tiff/vtktiff/conftest.map "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line error D8021 : invalid numeric argument '/Wl,--version-script=C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/ThirdParty/tiff/vtktiff/conftest.map' C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(429,5): error MSB6006: "CL.exe" exited with code 2. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_c1861.vcxproj] Source file was: int main(void){return 0;} Determining if the include file dlfcn.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d1f61.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d1f61.dir\Debug\\" /Fd"cmTC_d1f61.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'dlfcn.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d1f61.vcxproj] Determining if the include file unistd.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_10ca3.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_10ca3.dir\Debug\\" /Fd"cmTC_10ca3.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_10ca3.vcxproj] Performing C SOURCE FILE Test TIME_WITH_SYS_TIME failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_6d741.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 src.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TIME_WITH_SYS_TIME /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_6d741.dir\Debug\\" /Fd"cmTC_6d741.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c(2,10): error C1083: Cannot open include file: 'sys/time.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_6d741.vcxproj] Source file was: #include #include int main(void){return 0;} Determining if the mmap exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_99650.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_99650.dir\Debug\\" /Fd"cmTC_99650.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'sys/mman.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_99650.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef mmap return ((int*)(&mmap))[argc]; #else (void)argc; return 0; #endif } Determining if the strcasecmp exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_b57a2.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_b57a2.dir\Debug\\" /Fd"cmTC_b57a2.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'strings.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_b57a2.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef strcasecmp return ((int*)(&strcasecmp))[argc]; #else (void)argc; return 0; #endif } Determining if files windows.h;sys/file.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_b136b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_SYS_FILE_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_b136b.dir\Debug\\" /Fd"cmTC_b136b.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_FILE_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_FILE_H.c(3,10): error C1083: Cannot open include file: 'sys/file.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_b136b.vcxproj] Source: /* */ #include #include int main(void){return 0;} Determining if files windows.h;sys/ioctl.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_040ac.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_SYS_IOCTL_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_040ac.dir\Debug\\" /Fd"cmTC_040ac.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_IOCTL_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_IOCTL_H.c(3,10): error C1083: Cannot open include file: 'sys/ioctl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_040ac.vcxproj] Source: /* */ #include #include int main(void){return 0;} Determining if files windows.h;sys/resource.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_0097f.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_SYS_RESOURCE_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_0097f.dir\Debug\\" /Fd"cmTC_0097f.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_RESOURCE_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_RESOURCE_H.c(3,10): error C1083: Cannot open include file: 'sys/resource.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0097f.vcxproj] Source: /* */ #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/time.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_938ed.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_SYS_TIME_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_938ed.dir\Debug\\" /Fd"cmTC_938ed.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_TIME_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_SYS_TIME_H.c(4,10): error C1083: Cannot open include file: 'sys/time.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_938ed.vcxproj] Source: /* */ #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;features.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_3b585.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_FEATURES_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_3b585.dir\Debug\\" /Fd"cmTC_3b585.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_FEATURES_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_FEATURES_H.c(5,10): error C1083: Cannot open include file: 'features.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_3b585.vcxproj] Source: /* */ #include #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;dirent.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_fe18d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_DIRENT_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_fe18d.dir\Debug\\" /Fd"cmTC_fe18d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_DIRENT_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_DIRENT_H.c(5,10): error C1083: Cannot open include file: 'dirent.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_fe18d.vcxproj] Source: /* */ #include #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;unistd.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_dff50.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_UNISTD_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_dff50.dir\Debug\\" /Fd"cmTC_dff50.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_UNISTD_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_UNISTD_H.c(8,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_dff50.vcxproj] Source: /* */ #include #include #include #include #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;mach/mach_time.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_21de2.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_MACH_MACH_TIME_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_21de2.dir\Debug\\" /Fd"cmTC_21de2.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_MACH_MACH_TIME_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_MACH_MACH_TIME_H.c(8,10): error C1083: Cannot open include file: 'mach/mach_time.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_21de2.vcxproj] Source: /* */ #include #include #include #include #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;pthread.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_88e3d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_PTHREAD_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_88e3d.dir\Debug\\" /Fd"cmTC_88e3d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_PTHREAD_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_PTHREAD_H.c(10,10): error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_88e3d.vcxproj] Source: /* */ #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;dlfcn.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_1ee72.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_HAVE_DLFCN_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_1ee72.dir\Debug\\" /Fd"cmTC_1ee72.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_DLFCN_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\H5_HAVE_DLFCN_H.c(10,10): error C1083: Cannot open include file: 'dlfcn.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1ee72.vcxproj] Source: /* */ #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining size of ssize_t failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_0782e.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_SIZEOF_SSIZE_T.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_0782e.dir\Debug\\" /Fd"cmTC_0782e.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c(25,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0782e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c(26,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0782e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c(27,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0782e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c(28,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0782e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_SSIZE_T.c(29,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_0782e.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/H5_SIZEOF_SSIZE_T.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(ssize_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of off64_t failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2b94b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_SIZEOF_OFF64_T.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2b94b.dir\Debug\\" /Fd"cmTC_2b94b.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c(25,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2b94b.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c(26,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2b94b.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c(27,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2b94b.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c(28,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2b94b.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF_OFF64_T.c(29,12): error C2065: 'off64_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2b94b.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/H5_SIZEOF_OFF64_T.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(off64_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining if the function alarm exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_09472.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=alarm /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_09472.dir\Debug\\" /Fd"cmTC_09472.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol alarm referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_09472.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_09472.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_09472.vcxproj] Determining if the function fcntl exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_807a3.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=fcntl /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_807a3.dir\Debug\\" /Fd"cmTC_807a3.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol fcntl referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_807a3.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_807a3.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_807a3.vcxproj] Determining if the function flock exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_62416.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=flock /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_62416.dir\Debug\\" /Fd"cmTC_62416.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol flock referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_62416.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_62416.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_62416.vcxproj] Determining if the function fork exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2c665.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=fork /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2c665.dir\Debug\\" /Fd"cmTC_2c665.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol fork referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2c665.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_2c665.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2c665.vcxproj] Determining if the function frexpf exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_01c04.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=frexpf /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_01c04.dir\Debug\\" /Fd"cmTC_01c04.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol frexpf referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_01c04.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_01c04.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_01c04.vcxproj] Determining if the function frexpl exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_3197c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=frexpl /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_3197c.dir\Debug\\" /Fd"cmTC_3197c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol frexpl referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_3197c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_3197c.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_3197c.vcxproj] Determining if the function getrusage exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bc679.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=getrusage /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bc679.dir\Debug\\" /Fd"cmTC_bc679.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol getrusage referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bc679.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_bc679.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bc679.vcxproj] Determining if the function rand_r exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2eb04.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=rand_r /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2eb04.dir\Debug\\" /Fd"cmTC_2eb04.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol rand_r referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2eb04.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_2eb04.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2eb04.vcxproj] Determining if the function random exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_e6f8f.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=random /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e6f8f.dir\Debug\\" /Fd"cmTC_e6f8f.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol random referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e6f8f.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_e6f8f.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e6f8f.vcxproj] Determining if the function setsysinfo exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_259fb.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=setsysinfo /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_259fb.dir\Debug\\" /Fd"cmTC_259fb.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol setsysinfo referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_259fb.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_259fb.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_259fb.vcxproj] Determining if the function siglongjmp exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_909af.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=siglongjmp /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_909af.dir\Debug\\" /Fd"cmTC_909af.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol siglongjmp referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_909af.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_909af.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_909af.vcxproj] Determining if the function sigsetjmp exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_cd831.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=sigsetjmp /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_cd831.dir\Debug\\" /Fd"cmTC_cd831.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol sigsetjmp referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_cd831.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_cd831.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_cd831.vcxproj] Determining if the function sigprocmask exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_7cf44.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=sigprocmask /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7cf44.dir\Debug\\" /Fd"cmTC_7cf44.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol sigprocmask referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7cf44.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_7cf44.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7cf44.vcxproj] Determining if the function symlink exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_a5445.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=symlink /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_a5445.dir\Debug\\" /Fd"cmTC_a5445.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol symlink referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a5445.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_a5445.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a5445.vcxproj] Determining if the function asprintf exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_1f277.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=asprintf /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_1f277.dir\Debug\\" /Fd"cmTC_1f277.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol asprintf referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1f277.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_1f277.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1f277.vcxproj] Determining if the function vasprintf exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_e4dfc.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=vasprintf /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_e4dfc.dir\Debug\\" /Fd"cmTC_e4dfc.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol vasprintf referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e4dfc.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_e4dfc.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e4dfc.vcxproj] Determining if the function waitpid exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_97418.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=waitpid /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_97418.dir\Debug\\" /Fd"cmTC_97418.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol waitpid referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_97418.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_97418.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_97418.vcxproj] Determining if the sigsetjmp exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_fea15.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_fea15.dir\Debug\\" /Fd"cmTC_fea15.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,28): error C2065: 'sigsetjmp': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_fea15.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef sigsetjmp return ((int*)(&sigsetjmp))[argc]; #else (void)argc; return 0; #endif } Performing Other Test HAVE___INLINE__ failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_7406a.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HDFTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D HAVE___INLINE__ /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D HAVE_SYS_TYPES_H /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7406a.dir\Debug\\" /Fd"cmTC_7406a.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(429,24): error C2054: expected '(' to follow '__inline__' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(429,38): error C2085: 'static_foo': not in formal parameter list [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(429,38): error C2143: syntax error: missing ';' before '{' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(430,17): error C2054: expected '(' to follow '__inline__' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(430,24): error C2085: 'foo': not in formal parameter list [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake_ext_mod\HDFTests.c(430,24): error C2143: syntax error: missing ';' before '{' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7406a.vcxproj] Determining size of __float128 failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_82a07.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_SIZEOF___FLOAT128.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_82a07.dir\Debug\\" /Fd"cmTC_82a07.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c(25,12): error C2065: '__float128': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_82a07.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c(26,12): error C2065: '__float128': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_82a07.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c(27,12): error C2065: '__float128': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_82a07.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c(28,12): error C2065: '__float128': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_82a07.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF___FLOAT128.c(29,12): error C2065: '__float128': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_82a07.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/H5_SIZEOF___FLOAT128.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(__float128)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of _Quad failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_83a4d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 H5_SIZEOF__QUAD.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D WIN32_LEAN_AND_MEAN=1 /D NOGDI=1 /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_83a4d.dir\Debug\\" /Fd"cmTC_83a4d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c(25,12): error C2065: '_Quad': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_83a4d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c(26,12): error C2065: '_Quad': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_83a4d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c(27,12): error C2065: '_Quad': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_83a4d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c(28,12): error C2065: '_Quad': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_83a4d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\H5_SIZEOF__QUAD.c(29,12): error C2065: '_Quad': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_83a4d.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/H5_SIZEOF__QUAD.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(_Quad)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Test H5_LDOUBLE_TO_LONG_SPECIAL Compile failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_8c5ac.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 ConversionTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D H5_LDOUBLE_TO_LONG_SPECIAL_TEST /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8c5ac.dir\Debug\\" /Fd"cmTC_8c5ac.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(12,1): error C2059: syntax error: '+' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,73): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,89): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2061: syntax error: identifier '__security_cookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(275,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2146: syntax error: missing ')' before identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2061: syntax error: identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,35): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stddef.h(53,27): error C2143: syntax error: missing '{' before '__cdecl' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdlib.h(164,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_8c5ac.vcxproj] Test H5_LONG_TO_LDOUBLE_SPECIAL Compile failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_7ef2e.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 ConversionTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D H5_LONG_TO_LDOUBLE_SPECIAL_TEST /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7ef2e.dir\Debug\\" /Fd"cmTC_7ef2e.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(12,1): error C2059: syntax error: '+' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,73): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,89): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2061: syntax error: identifier '__security_cookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(275,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2146: syntax error: missing ')' before identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2061: syntax error: identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,35): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stddef.h(53,27): error C2143: syntax error: missing '{' before '__cdecl' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdlib.h(164,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(108,29): warning C4305: '=': truncation from '__int64' to 'long' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7ef2e.vcxproj] Test H5_LDOUBLE_TO_LLONG_ACCURATE Compile failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_414b0.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 ConversionTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D H5_LDOUBLE_TO_LLONG_ACCURATE_TEST /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_414b0.dir\Debug\\" /Fd"cmTC_414b0.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(12,1): error C2059: syntax error: '+' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,73): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,89): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2061: syntax error: identifier '__security_cookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(275,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2146: syntax error: missing ')' before identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2061: syntax error: identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,35): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stddef.h(53,27): error C2143: syntax error: missing '{' before '__cdecl' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdlib.h(164,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_414b0.vcxproj] Test H5_LLONG_TO_LDOUBLE_CORRECT Compile failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_26203.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 ConversionTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D H5_LLONG_TO_LDOUBLE_CORRECT_TEST /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_26203.dir\Debug\\" /Fd"cmTC_26203.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(12,1): error C2059: syntax error: '+' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,73): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,89): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2061: syntax error: identifier '__security_cookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(275,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2146: syntax error: missing ')' before identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2061: syntax error: identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,35): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stddef.h(53,27): error C2143: syntax error: missing '{' before '__cdecl' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdlib.h(164,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_26203.vcxproj] Test H5_NO_ALIGNMENT_RESTRICTIONS Compile failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_90de6.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 ConversionTests.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D H5_NO_ALIGNMENT_RESTRICTIONS_TEST /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_90de6.dir\Debug\\" /Fd"cmTC_90de6.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\hdf5\vtkhdf5\config\cmake\ConversionTests.c(12,1): error C2059: syntax error: '+' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,61): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(287,73): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2146: syntax error: missing ')' before identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2061: syntax error: identifier '_StackCookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,77): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(288,89): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2061: syntax error: identifier '__security_cookie' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.21.27702\include\vcruntime.h(292,18): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(275,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2146: syntax error: missing ')' before identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2061: syntax error: identifier '_Reserved' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,26): error C2059: syntax error: ';' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\corecrt.h(287,35): error C2059: syntax error: ')' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stddef.h(53,27): error C2143: syntax error: missing '{' before '__cdecl' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\stdlib.h(164,10): error C2081: 'uintptr_t': name in formal parameter list illegal [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_90de6.vcxproj] Determining if the include file strings.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_48c03.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_48c03.dir\Debug\\" /Fd"cmTC_48c03.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'strings.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_48c03.vcxproj] Determining if the include file byteswap.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bd00d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_bd00d.dir\Debug\\" /Fd"cmTC_bd00d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'byteswap.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bd00d.vcxproj] Determining if the include file sys/endian.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_66e1d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_66e1d.dir\Debug\\" /Fd"cmTC_66e1d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'sys/endian.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_66e1d.vcxproj] Determining if the getpagesize exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d0041.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d0041.dir\Debug\\" /Fd"cmTC_d0041.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d0041.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef getpagesize return ((int*)(&getpagesize))[argc]; #else (void)argc; return 0; #endif } Determining if the bcopy exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_7400c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_7400c.dir\Debug\\" /Fd"cmTC_7400c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'strings.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7400c.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef bcopy return ((int*)(&bcopy))[argc]; #else (void)argc; return 0; #endif } Determining if the getrandom exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_37a71.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_37a71.dir\Debug\\" /Fd"cmTC_37a71.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'sys/random.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_37a71.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef getrandom return ((int*)(&getrandom))[argc]; #else (void)argc; return 0; #endif } Determining if the arc4random_buf exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_48238.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_48238.dir\Debug\\" /Fd"cmTC_48238.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,33): error C2065: 'arc4random_buf': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_48238.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef arc4random_buf return ((int*)(&arc4random_buf))[argc]; #else (void)argc; return 0; #endif } Determining if the arc4random exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ad917.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_ad917.dir\Debug\\" /Fd"cmTC_ad917.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,29): error C2065: 'arc4random': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_ad917.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef arc4random return ((int*)(&arc4random))[argc]; #else (void)argc; return 0; #endif } Determining if the off_t exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_b7e3b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_b7e3b.dir\Debug\\" /Fd"cmTC_b7e3b.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,24): error C2275: 'off_t': illegal use of this type as an expression [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_b7e3b.vcxproj] C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt\sys/types.h(42): message : see declaration of 'off_t' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_b7e3b.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef off_t return ((int*)(&off_t))[argc]; #else (void)argc; return 0; #endif } Performing C SOURCE FILE Test HAVE_SYSCALL_GETRANDOM failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2217d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 src.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D HAVE_SYSCALL_GETRANDOM /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2217d.dir\Debug\\" /Fd"cmTC_2217d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c(3,18): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2217d.vcxproj] Source file was: #include /* for NULL */ #include /* for syscall */ #include /* for SYS_getrandom */ int main() { syscall(SYS_getrandom, NULL, 0, 0); return 0; } Performing C SOURCE FILE Test FLAG_NO_STRICT_ALIASING failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_aa0c6.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 src.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D FLAG_NO_STRICT_ALIASING /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_aa0c6.dir\Debug\\" /Fd"cmTC_aa0c6.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -fno-strict-aliasing "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line warning D9002 : ignoring unknown option '-fno-strict-aliasing' cmTC_aa0c6.vcxproj -> C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_aa0c6.exe Source file was: int main(void) { return 0; } Determining if the alloca exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d6eac.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d6eac.dir\Debug\\" /Fd"cmTC_d6eac.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'alloca.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d6eac.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef alloca return ((int*)(&alloca))[argc]; #else (void)argc; return 0; #endif } Determining if the fsync exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d8071.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d8071.dir\Debug\\" /Fd"cmTC_d8071.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d8071.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef fsync return ((int*)(&fsync))[argc]; #else (void)argc; return 0; #endif } Determining if the mktemp exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_9f514.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_9f514.dir\Debug\\" /Fd"cmTC_9f514.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,25): error C2065: 'mktemp': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_9f514.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef mktemp return ((int*)(&mktemp))[argc]; #else (void)argc; return 0; #endif } Determining if the getrlimit exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ddf13.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_ddf13.dir\Debug\\" /Fd"cmTC_ddf13.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'sys/time.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_ddf13.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include int main(int argc, char** argv) { (void)argv; #ifndef getrlimit return ((int*)(&getrlimit))[argc]; #else (void)argc; return 0; #endif } Determining if the random exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_a5538.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_a5538.dir\Debug\\" /Fd"cmTC_a5538.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,25): error C2065: 'random': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a5538.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef random return ((int*)(&random))[argc]; #else (void)argc; return 0; #endif } Determining if the strndup exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d9dec.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d9dec.dir\Debug\\" /Fd"cmTC_d9dec.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,26): error C2065: 'strndup': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d9dec.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef strndup return ((int*)(&strndup))[argc]; #else (void)argc; return 0; #endif } Determining if the strlcat exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_e62c9.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_e62c9.dir\Debug\\" /Fd"cmTC_e62c9.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,26): error C2065: 'strlcat': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_e62c9.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef strlcat return ((int*)(&strlcat))[argc]; #else (void)argc; return 0; #endif } Determining if the st_blocksize exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_3de63.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_3de63.dir\Debug\\" /Fd"cmTC_3de63.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,31): error C2065: 'st_blocksize': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_3de63.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef st_blocksize return ((int*)(&st_blocksize))[argc]; #else (void)argc; return 0; #endif } Determining if the sysconf exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_6ed84.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_6ed84.dir\Debug\\" /Fd"cmTC_6ed84.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'unistd.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_6ed84.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef sysconf return ((int*)(&sysconf))[argc]; #else (void)argc; return 0; #endif } Determining if the H5Pset_all_coll_metadata_ops exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_96dd8.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /I"C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\netcdf\vtknetcdf\..\..\hdf5" /I"C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\netcdf\vtknetcdf\..\..\hdf5\vtkhdf5" /IC:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\netcdf\vtknetcdf\..\..\hdf5 /IC:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\netcdf\vtknetcdf\..\..\hdf5\vtkhdf5\src /Zi /W3 /WX- /diagnostics:column /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_96dd8.dir\Debug\\" /Fd"cmTC_96dd8.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,47): error C2065: 'H5Pset_all_coll_metadata_ops': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_96dd8.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef H5Pset_all_coll_metadata_ops return ((int*)(&H5Pset_all_coll_metadata_ops))[argc]; #else (void)argc; return 0; #endif } Determining if the HDF5_PARALLEL exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2101d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /I"C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\netcdf\vtknetcdf\..\..\hdf5" /I"C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\netcdf\vtknetcdf\..\..\hdf5\vtkhdf5" /IC:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\netcdf\vtknetcdf\..\..\hdf5 /IC:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\netcdf\vtknetcdf\..\..\hdf5\vtkhdf5\src /Zi /W3 /WX- /diagnostics:column /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_2101d.dir\Debug\\" /Fd"cmTC_2101d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(8,32): error C2065: 'HDF5_PARALLEL': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2101d.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef HDF5_PARALLEL return ((int*)(&HDF5_PARALLEL))[argc]; #else (void)argc; return 0; #endif } Determining if the include file alloca.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_d35aa.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_d35aa.dir\Debug\\" /Fd"cmTC_d35aa.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'alloca.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_d35aa.vcxproj] Determining if the include file sys/param.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_cf219.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_cf219.dir\Debug\\" /Fd"cmTC_cf219.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'sys/param.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_cf219.vcxproj] Determining if the include file sys/resource.h exists failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ecfc3.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckIncludeFile.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_ecfc3.dir\Debug\\" /Fd"cmTC_ecfc3.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1,10): error C1083: Cannot open include file: 'sys/resource.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_ecfc3.vcxproj] Determining size of longlong failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_a8363.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_LONGLONG.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_a8363.dir\Debug\\" /Fd"cmTC_a8363.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c(25,12): error C2065: 'longlong': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a8363.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c(26,12): error C2065: 'longlong': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a8363.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c(27,12): error C2065: 'longlong': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a8363.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c(28,12): error C2065: 'longlong': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a8363.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_LONGLONG.c(29,12): error C2065: 'longlong': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_a8363.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_LONGLONG.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(longlong)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of ssize_t failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bcf05.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_SSIZE_T.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_bcf05.dir\Debug\\" /Fd"cmTC_bcf05.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c(25,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bcf05.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c(26,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bcf05.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c(27,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bcf05.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c(28,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bcf05.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SSIZE_T.c(29,12): error C2065: 'ssize_t': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bcf05.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_SSIZE_T.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(ssize_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of uchar failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_5c89e.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_UCHAR.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_5c89e.dir\Debug\\" /Fd"cmTC_5c89e.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c(25,12): error C2065: 'uchar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_5c89e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c(26,12): error C2065: 'uchar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_5c89e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c(27,12): error C2065: 'uchar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_5c89e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c(28,12): error C2065: 'uchar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_5c89e.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UCHAR.c(29,12): error C2065: 'uchar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_5c89e.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_UCHAR.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(uchar)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of uint failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_953dd.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_UINT.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_953dd.dir\Debug\\" /Fd"cmTC_953dd.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c(25,12): error C2065: 'uint': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_953dd.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c(26,12): error C2065: 'uint': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_953dd.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c(27,12): error C2065: 'uint': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_953dd.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c(28,12): error C2065: 'uint': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_953dd.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_UINT.c(29,12): error C2065: 'uint': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_953dd.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_UINT.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(uint)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of schar failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_eb7ab.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_SCHAR.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_eb7ab.dir\Debug\\" /Fd"cmTC_eb7ab.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c(25,12): error C2065: 'schar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_eb7ab.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c(26,12): error C2065: 'schar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_eb7ab.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c(27,12): error C2065: 'schar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_eb7ab.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c(28,12): error C2065: 'schar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_eb7ab.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_SCHAR.c(29,12): error C2065: 'schar': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_eb7ab.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_SCHAR.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(schar)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Determining size of ushort failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_1d51c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. HAVE_USHORT.c cl /c /Zi /W3 /WX- /diagnostics:column /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_1d51c.dir\Debug\\" /Fd"cmTC_1d51c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c(25,12): error C2065: 'ushort': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d51c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c(26,12): error C2065: 'ushort': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d51c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c(27,12): error C2065: 'ushort': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d51c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c(28,12): error C2065: 'ushort': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d51c.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckTypeSize\HAVE_USHORT.c(29,12): error C2065: 'ushort': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_1d51c.vcxproj] C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CheckTypeSize/HAVE_USHORT.c: #include #include #include #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(ushort)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Performing C SOURCE FILE Test have_flag_logical-op-parentheses failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_7b7b9.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "have_flag_logical-op-parentheses" /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_7b7b9.dir\Debug\\" /Fd"cmTC_7b7b9.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -Wno-logical-op-parentheses "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line error D8021 : invalid numeric argument '/Wno-logical-op-parentheses' C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(429,5): error MSB6006: "CL.exe" exited with code 2. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_7b7b9.vcxproj] Source file was: int main(void) { return 0; } Performing C SOURCE FILE Test have_flag_parentheses failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c371c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D have_flag_parentheses /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c371c.dir\Debug\\" /Fd"cmTC_c371c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -Wno-parentheses "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line error D8021 : invalid numeric argument '/Wno-parentheses' C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(429,5): error MSB6006: "CL.exe" exited with code 2. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_c371c.vcxproj] Source file was: int main(void) { return 0; } Performing C SOURCE FILE Test have_flag_shift-op-parentheses failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_be409.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "have_flag_shift-op-parentheses" /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_be409.dir\Debug\\" /Fd"cmTC_be409.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -Wno-shift-op-parentheses "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line error D8021 : invalid numeric argument '/Wno-shift-op-parentheses' C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(429,5): error MSB6006: "CL.exe" exited with code 2. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_be409.vcxproj] Source file was: int main(void) { return 0; } Performing C SOURCE FILE Test have_flag_tautological-compare failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_16576.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D "have_flag_tautological-compare" /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_16576.dir\Debug\\" /Fd"cmTC_16576.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue -Wno-tautological-compare "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\src.c" cl : Command line error D8021 : invalid numeric argument '/Wno-tautological-compare' C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(429,5): error MSB6006: "CL.exe" exited with code 2. [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_16576.vcxproj] Source file was: int main(void) { return 0; } Determining if the function shl_load exists in the dld; failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_9a15c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=shl_load /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_9a15c.dir\Debug\\" /Fd"cmTC_9a15c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" LINK : fatal error LNK1104: cannot open file 'dld.lib' [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_9a15c.vcxproj] Determining if the function dlopen exists in the failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_bb054.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckFunctionExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D CHECK_FUNCTION_EXISTS=dlopen /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bb054.dir\Debug\\" /Fd"cmTC_bb054.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.15\Modules\CheckFunctionExists.c" CheckFunctionExists.obj : error LNK2019: unresolved external symbol dlopen referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bb054.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\Debug\cmTC_bb054.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_bb054.vcxproj] Determining if files sys/types.h;fcntl.h;malloc.h;inttypes.h;limits.h;stdint.h;stdlib.h;string.h;sys/stat.h;time.h;signal.h;errno.h;ansidecl.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_c6fe2.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_ANSIDECL_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _GNU_SOURCE /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_c6fe2.dir\Debug\\" /Fd"cmTC_c6fe2.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_ANSIDECL_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_ANSIDECL_H.c(14,10): error C1083: Cannot open include file: 'ansidecl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_c6fe2.vcxproj] Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;fcntl.h;malloc.h;inttypes.h;limits.h;stdint.h;stdlib.h;string.h;sys/stat.h;time.h;signal.h;errno.h;ctype.h;dl.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_ff98c.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_DL_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _GNU_SOURCE /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_ff98c.dir\Debug\\" /Fd"cmTC_ff98c.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_DL_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_DL_H.c(15,10): error C1083: Cannot open include file: 'dl.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_ff98c.vcxproj] Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if files sys/types.h;fcntl.h;malloc.h;inttypes.h;limits.h;stdint.h;stdlib.h;string.h;sys/stat.h;time.h;signal.h;errno.h;ctype.h;float.h;math.h;pthread.h exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_2699a.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 HAVE_PTHREAD_H.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _GNU_SOURCE /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_2699a.dir\Debug\\" /Fd"cmTC_2699a.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_PTHREAD_H.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CheckIncludeFiles\HAVE_PTHREAD_H.c(17,10): error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_2699a.vcxproj] Source: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(void){return 0;} Determining if the vsnprintf exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_32939.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D _GNU_SOURCE /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_32939.dir\Debug\\" /Fd"cmTC_32939.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(22,28): error C2065: 'vsnprintf': undeclared identifier [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_32939.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { (void)argv; #ifndef vsnprintf return ((int*)(&vsnprintf))[argc]; #else (void)argc; return 0; #endif } Checking for __va_copy failed to compile with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/ThirdParty/libxml2/vtklibxml2/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_f5e7d.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 platformTestsC.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /D WIN32 /D _WINDOWS /D TEST_HAVE___VA_COPY /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_f5e7d.dir\Debug\\" /Fd"cmTC_f5e7d.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\libxml2\vtklibxml2\platformTestsC.c C:\Users\Ossama\Downloads\Compressed\opencv\vtk\ThirdParty\libxml2\vtklibxml2\platformTestsC.c(46,12): warning C4013: '__va_copy' undefined; assuming extern returning int [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\libxml2\vtklibxml2\CMakeFiles\CMakeTmp\cmTC_f5e7d.vcxproj] platformTestsC.obj : error LNK2019: unresolved external symbol __va_copy referenced in function main [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\libxml2\vtklibxml2\CMakeFiles\CMakeTmp\cmTC_f5e7d.vcxproj] C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\libxml2\vtklibxml2\CMakeFiles\CMakeTmp\Debug\cmTC_f5e7d.exe : fatal error LNK1120: 1 unresolved externals [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\ThirdParty\libxml2\vtklibxml2\CMakeFiles\CMakeTmp\cmTC_f5e7d.vcxproj] Determining if the PTHREAD_MUTEX_RECURSIVE exist failed with the following output: Change Dir: C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/MSBuild.exe cmTC_6aea7.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=16.0 /v:m && Microsoft (R) Build Engine version 16.1.76+g14b0a930a7 for .NET Framework Copyright (C) Microsoft Corporation. All rights reserved. Microsoft (R) C/C++ Optimizing Compiler Version 19.21.27702.2 for x64 CheckSymbolExists.c Copyright (C) Microsoft Corporation. All rights reserved. cl /c /Zi /W3 /WX- /diagnostics:column /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_6aea7.dir\Debug\\" /Fd"cmTC_6aea7.dir\Debug\vc142.pdb" /Gd /TC /errorReport:queue "C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c" C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\CheckSymbolExists.c(2,10): error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\Ossama\Downloads\Compressed\opencv\vtk-build\CMakeFiles\CMakeTmp\cmTC_6aea7.vcxproj] File C:/Users/Ossama/Downloads/Compressed/opencv/vtk-build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include int main(int argc, char** argv) { (void)argv; #ifndef PTHREAD_MUTEX_RECURSIVE return ((int*)(&PTHREAD_MUTEX_RECURSIVE))[argc]; #else (void)argc; return 0; #endif }

cv::floodfill for GpuMat

$
0
0
I wanted to know if there is function or way to do floodfill on GpuMat. I am trying to parallelize my opencv code using cuda and opencv. I have one line doing floodfill. cv::floodFill(mask, cv::Point(0, 0), cv::Scalar(255)); (Here mask is cv::Mat) I wanted to do such thing when mask is GpuMat structure. I do not want to download mat from gpumat and then do the floodfill and upload to GpuMat again within the code.

Convert contours to false colour map

$
0
0
Hi everyone, first time dabbler in Opencv - enjoying it immensely so far! I hope someone can point me in the right direction, I'm trying to work out which function would be appropriate to convert the steepness of contour lines (how CLOSE they are together) into a color/heat map. See the following image. Idea is when the rings are close to each other they get a warmer color, cooler if they are further apart. Any suggestions? Cheers, -Mike ![image description](/upfiles/15597954777467965.jpg)

How to compile sample_train_landmark_detector

$
0
0
Hi guys, I want to train face landmark detector in opencv3.4, as official documents shows, sample_train_landmark_detector can be used to train it. but after compile from opencv3.4 source, there is no program named sample_train_landmark_detector. How can I compile sample_train_landmark_detector, anyone could give a hand?
Viewing all 41027 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>