I am trying to detect a red laser using open cv cpp code on a mat image. But I find it difficult to track the colour range for red color. I want to detect 7 circles with black border color and then detect in which circle does my red laser hits.
I am currently using the following code.
_________________________________________________________________
cv::Mat bgr_image;
UIImageToMat(image, bgr_image);
cv::Mat hsv_image;
cv::cvtColor(bgr_image, hsv_image, cv::COLOR_BGR2HSV);
cv::Mat lower_red_hue_range;
cv::Mat upper_red_hue_range;
cv::Mat allRedHue;
cv::inRange(hsv_image, cv::Scalar(0, 100, 100), cv::Scalar(10, 255, 255), lower_red_hue_range);
cv::inRange(hsv_image, cv::Scalar(160, 100, 100), cv::Scalar(179, 255, 255), upper_red_hue_range);
cv::addWeighted(lower_red_hue_range, 1.0, upper_red_hue_range, 1.0, 0.0, allRedHue);
Moments m = moments(allRedHue, true);
Point2f p = Point2f(m.m10/m.m00, m.m01/m.m00);
p == p?
dict = @{@"xPoint":[NSNumber numberWithFloat:p.x],@"yPoint":[NSNumber numberWithFloat:p.y]} :
dict = @{@"xPoint":[NSNumber numberWithFloat:0.0],@"yPoint":[NSNumber numberWithFloat:0.0]};
_________________________________________________________________
Please help to find a perfect solution for this problem. I want the accurate coordinates for the red laser light or red objects as I am using cpp code in iOS App.
↧
Detecting red laser color and get coordinates of the red laser color using open cv cpp code.
↧
cv::text::OCRTesseract I cannot find this class
I am iOS developer. I want to extract text from image. I downloaded the opencv 4.0 for iOS. But I am unable to find this class as mentioned in the docs. Can someone please advice where to find this class.
Thanks in advance
↧
↧
No matching function for call to 'rectangle'
I am trying to draw an rectangle in video but I get this error :" No matching function for call to 'rectangle' "
I searched for a solution online but with no success.
here are my imports :
#import
#import
#import
#import
and here is the code itself:
face_cascade.detectMultiScale(image, faces, 1.3, 5);
printf("%zd face(s) are found.\n", faces.size());
for(int i = 0; i< faces.size(); i++){
cv::Rect r = faces[i];
x = r.x;
y = r.y;
w = r.width;
h = r.height;
rectangle(image,(x,y),(x+w,y+h),(255,0,0),2); // my error is here
}
↧
Detect room floor from single image.
1. I am newbie for the openCV and not much idea about it. I am trying to find-out the room floor from the static image and try to add image on it. Please suggest possible ways to detect it. i tries to find edges with canny algorithm.
----------------------------------------
↧
Objective-C OpenCV SIGABRT on createLineSegmentDetector
OpenCV Version `ver 3.4.6`
---
I successfully configured `opencv2.framework` on my Xcode project, and tested with real-time edged image viewer (Record -> Gaussian Filter -> Dilate -> Canny -> View).
But when i add line
`cv::Ptr lsd = cv::createLineSegmentDetector();`
to write my own contour detection code,
my app crashed down with `SIGABRT`.
---
How can i fix this problem?
↧
↧
Compiling for iOS using Xcode 11.0 Beta 2
Hello,
I am trying to take advantage of Xcode 11's new build iOS apps for the Mac feature.
In order to use OpenCV (which my app requires), the framework needs to be compiled with Xcode 11. Is there a version of the iOS framework compiled with Xcode 11 anywhere?
I selected the Xcode 11 beta 2 command line tools, and updated to CMake 3.14.5.
I tried building 3.4.6 using the platforms/ios/build_framework.py script using this command:
-- /usr/bin/python2.7 opencv-3.4.6/platforms/ios/build_framework.py ios
It appears that every check is failing eg:
-- Performing Test HAVE_CXX_WNO_COMMENT
-- Performing Test HAVE_CXX_WNO_COMMENT - Failed
The CMakeOutput.log and CMakeError.log are at the bottom of this post.
Here is the error:
-- Configuring incomplete, errors occurred!
-- See also "/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeOutput.log".
-- See also "/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeError.log".
-- ============================================================
--ERROR: Command '['cmake', '-GXcode', '-DAPPLE_FRAMEWORK=ON', '-DCMAKE_INSTALL_PREFIX=install', '-DCMAKE_BUILD_TYPE=Release', '-DIOS_ARCH=armv7', '-DCMAKE_TOOLCHAIN_FILE=/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/platforms/ios/cmake/Toolchains/Toolchain-iPhoneOS_Xcode.cmake', '-DCPU_BASELINE=DETECT', '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6', '-DCMAKE_C_FLAGS=-fembed-bitcode', '-DCMAKE_CXX_FLAGS=-fembed-bitcode']' returned non-zero exit status 1
--============================================================
--Traceback (most recent call last):
-- File "opencv-3.4.6/platforms/ios/build_framework.py", line 117, in build
self._build(outdir)
-- File "opencv-3.4.6/platforms/ios/build_framework.py", line 109, in _build
self.buildOne(t[0], t[1], mainBD, cmake_flags)
-- File "opencv-3.4.6/platforms/ios/build_framework.py", line 196, in buildOne
execute(cmakecmd, cwd = builddir)
-- File "opencv-3.4.6/platforms/ios/build_framework.py", line 39, in execute
retcode = check_call(cmd, cwd = cwd)
-- File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 190, in check_call
raise CalledProcessError(retcode, cmd)
--CalledProcessError: Command '['cmake', '-GXcode', '-DAPPLE_FRAMEWORK=ON', '-DCMAKE_INSTALL_PREFIX=install', '-DCMAKE_BUILD_TYPE=Release', '-DIOS_ARCH=armv7', '-DCMAKE_TOOLCHAIN_FILE=/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/platforms/ios/cmake/Toolchains/Toolchain-iPhoneOS_Xcode.cmake', '-DCPU_BASELINE=DETECT', '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6', '-DCMAKE_C_FLAGS=-fembed-bitcode', '-DCMAKE_CXX_FLAGS=-fembed-bitcode']' returned non-zero exit status 1
CMakeOutput.log:
The target system is: iOS - 12.0 - armv7
The host system is: Darwin - 19.0.0 - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler:
Build flags: -fembed-bitcode
Id flags:
The output was:
0
2019-06-19 17:45:54.329 xcodebuild[55801:285282] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
note: Using new build system
note: Planning build
note: Constructing build description
warning: Traditional headermap style is no longer supported; please migrate to using separate headermaps and set 'ALWAYS_SEARCH_USER_PATHS' to NO.
CreateBuildDirectory /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
builtin-create-build-directory /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
MkDir /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-own-target-headers.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-own-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-generated-files.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-generated-files.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/all-product-headers.yaml (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/all-product-headers.yaml
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-all-non-framework-target-headers.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-all-non-framework-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-project-headers.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-project-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-all-target-headers.hmap (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-all-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CompilerIdCXX.LinkFileList (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CompilerIdCXX.LinkFileList
CompileC /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CMakeCXXCompilerId.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CMakeCXXCompilerId.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target arm64-apple-ios13.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -fvisibility-inlines-hidden -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-generated-files.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-own-target-headers.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-all-target-headers.hmap -iquote /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/CompilerIdCXX-project-headers.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/DerivedSources-normal/arm64 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/DerivedSources/arm64 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/DerivedSources -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CMakeCXXCompilerId.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CMakeCXXCompilerId.dia -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CMakeCXXCompilerId.cpp -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CMakeCXXCompilerId.o
Ld /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest/CompilerIdCXX normal arm64 (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -target arm64-apple-ios13.0 -bundle -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -L/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX -L/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -filelist /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CompilerIdCXX.LinkFileList -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CompilerIdCXX_lto.o -framework XCTest -Xlinker -dependency_info -Xlinker /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Objects-normal/arm64/CompilerIdCXX_dependency_info.dat -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest/CompilerIdCXX
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh
GenerateDSYMFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest.dSYM /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest/CompilerIdCXX (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest/CompilerIdCXX -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest.dSYM
PhaseScriptExecution Run\ Script /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
/bin/sh -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.build/Debug-iphoneos/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh
GCC_VERSION=com.apple.compilers.llvm.clang.1_0
ARCHS=arm64
RegisterExecutionPolicyException /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
builtin-RegisterExecutionPolicyException /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest
note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted"
Touch /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest (in target: CompilerIdCXX)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX
/usr/bin/touch -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest
** BUILD SUCCEEDED **
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.xctest/CompilerIdCXX"
The CXX compiler identification is AppleClang, found in "/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdCXX/CompilerIdCXX.xctest/CompilerIdCXX"
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler:
Build flags: -fembed-bitcode
Id flags:
The output was:
0
2019-06-19 17:45:55.951 xcodebuild[55817:285588] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
note: Using new build system
note: Planning build
note: Constructing build description
warning: Traditional headermap style is no longer supported; please migrate to using separate headermaps and set 'ALWAYS_SEARCH_USER_PATHS' to NO.
CreateBuildDirectory /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
builtin-create-build-directory /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
MkDir /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-own-target-headers.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-own-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-project-headers.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-project-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-generated-files.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-generated-files.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-all-non-framework-target-headers.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-all-non-framework-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-all-target-headers.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-all-target-headers.hmap
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/all-product-headers.yaml (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/all-product-headers.yaml
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC.hmap (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC.hmap
CompileC /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CMakeCCompilerId.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CMakeCCompilerId.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -target arm64-apple-ios13.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -iquote /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-generated-files.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-own-target-headers.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-all-target-headers.hmap -iquote /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/CompilerIdC-project-headers.hmap -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/DerivedSources-normal/arm64 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/DerivedSources/arm64 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/DerivedSources -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CMakeCCompilerId.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CMakeCCompilerId.dia -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CMakeCCompilerId.c -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CMakeCCompilerId.o
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CompilerIdC.LinkFileList (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CompilerIdC.LinkFileList
Ld /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest/CompilerIdC normal arm64 (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios13.0 -bundle -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -L/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC -L/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -filelist /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CompilerIdC.LinkFileList -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CompilerIdC_lto.o -framework XCTest -Xlinker -dependency_info -Xlinker /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Objects-normal/arm64/CompilerIdC_dependency_info.dat -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest/CompilerIdC
WriteAuxiliaryFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh
GenerateDSYMFile /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest.dSYM /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest/CompilerIdC (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest/CompilerIdC -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest.dSYM
PhaseScriptExecution Run\ Script /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
/bin/sh -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.build/Debug-iphoneos/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh
GCC_VERSION=com.apple.compilers.llvm.clang.1_0
ARCHS=arm64
RegisterExecutionPolicyException /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
builtin-RegisterExecutionPolicyException /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest
note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted"
Touch /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest (in target: CompilerIdC)
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC
/usr/bin/touch -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest
** BUILD SUCCEEDED **
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.xctest/CompilerIdC"
The C compiler identification is AppleClang, found in "/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/3.14.5/CompilerIdC/CompilerIdC.xctest/CompilerIdC"
CMakeError.log:
Detecting CXX compiler ABI info failed to compile with the following output:
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_afcdf -configuration Debug -hideShellScriptEnvironment
2019-06-19 17:45:57.842 xcodebuild[55838:286016] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_afcdf OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Write auxiliary files
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/cmTC_afcdf.LinkFileList
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/CMakeCXXCompilerABI.o /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCXXCompilerABI.cpp normal armv7 c++ com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target armv7-apple-ios12.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DCMAKE_INTDIR=\"Debug-iphoneos\" -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/DerivedSources-normal/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/DerivedSources/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug -fembed-bitcode -fPIC -v -Wl,-v -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/CMakeCXXCompilerABI.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/CMakeCXXCompilerABI.dia -c /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCXXCompilerABI.cpp -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/CMakeCXXCompilerABI.o
Apple clang version 11.0.0 (clang-1100.0.20.17)
Target: armv7-apple-ios12.0
Thread model: posix
InstalledDir: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
clang: error: invalid iOS deployment version '--target=armv7-apple-ios12.0', iOS 10 is the maximum deployment target for 32-bit targets [-Winvalid-ios-deployment-target]
** BUILD FAILED **
The following build commands failed:
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_afcdf.build/Objects-normal/armv7/CMakeCXXCompilerABI.o /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCXXCompilerABI.cpp normal armv7 c++ com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Detecting CXX [-std=c++1z] compiler features failed to compile with the following output:
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_e138c -configuration Debug -hideShellScriptEnvironment
2019-06-19 17:45:59.094 xcodebuild[55854:286384] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_e138c OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Write auxiliary files
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/cmTC_e138c.LinkFileList
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/feature_tests.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.cxx normal armv7 c++ com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target armv7-apple-ios12.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DCMAKE_INTDIR=\"Debug-iphoneos\" -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode-marker -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/DerivedSources-normal/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/DerivedSources/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug -fembed-bitcode -fPIC -std=c++1z -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/feature_tests.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/feature_tests.dia -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.cxx -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/feature_tests.o
clang: error: invalid iOS deployment version '--target=armv7-apple-ios12.0', iOS 10 is the maximum deployment target for 32-bit targets [-Winvalid-ios-deployment-target]
** BUILD FAILED **
The following build commands failed:
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_e138c.build/Objects-normal/armv7/feature_tests.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.cxx normal armv7 c++ com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Detecting C compiler ABI info failed to compile with the following output:
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_1ef35 -configuration Debug -hideShellScriptEnvironment
2019-06-19 17:46:00.315 xcodebuild[55870:286736] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_1ef35 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Write auxiliary files
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/cmTC_1ef35.LinkFileList
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/CMakeCCompilerABI.o /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCCompilerABI.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -target armv7-apple-ios12.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -DCMAKE_INTDIR=\"Debug-iphoneos\" -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/DerivedSources-normal/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/DerivedSources/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug -fembed-bitcode -fPIC -v -Wl,-v -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/CMakeCCompilerABI.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/CMakeCCompilerABI.dia -c /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCCompilerABI.c -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/CMakeCCompilerABI.o
Apple clang version 11.0.0 (clang-1100.0.20.17)
Target: armv7-apple-ios12.0
Thread model: posix
InstalledDir: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
clang: error: invalid iOS deployment version '--target=armv7-apple-ios12.0', iOS 10 is the maximum deployment target for 32-bit targets [-Winvalid-ios-deployment-target]
** BUILD FAILED **
The following build commands failed:
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_1ef35.build/Objects-normal/armv7/CMakeCCompilerABI.o /usr/local/Cellar/cmake/3.14.5/share/cmake/Modules/CMakeCCompilerABI.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Detecting C [-std=c11] compiler features failed to compile with the following output:
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_04baa -configuration Debug -hideShellScriptEnvironment
2019-06-19 17:46:01.504 xcodebuild[55886:287149] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_04baa OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Write auxiliary files
/bin/mkdir -p /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7
write-file /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/cmTC_04baa.LinkFileList
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/feature_tests.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -target armv7-apple-ios12.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -DCMAKE_INTDIR=\"Debug-iphoneos\" -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.0.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode-marker -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug/include -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/DerivedSources-normal/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/DerivedSources/armv7 -I/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/Debug -fembed-bitcode -fPIC -std=c11 -MMD -MT dependencies -MF /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/feature_tests.d --serialize-diagnostics /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/feature_tests.dia -c /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.c -o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/feature_tests.o
clang: error: invalid iOS deployment version '--target=armv7-apple-ios12.0', iOS 10 is the maximum deployment target for 32-bit targets [-Winvalid-ios-deployment-target]
** BUILD FAILED **
The following build commands failed:
CompileC CMAKE_TRY_COMPILE.build/Debug-iphoneos/cmTC_04baa.build/Objects-normal/armv7/feature_tests.o /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/feature_tests.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/cmake/checks/cxx11.cpp'
check option: ''
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_0c622 -configuration Debug -hideShellScriptEnvironment
2019-06-19 17:46:02.732 xcodebuild[55902:287507] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_0c622 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_0c622 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -fsigned-char'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_2fa81 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:04.001 xcodebuild[55916:287864] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_2fa81 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_2fa81 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -fsigned-char'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_942bf -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:05.201 xcodebuild[55930:288220] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_942bf OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_942bf doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -W'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_76c20 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:06.416 xcodebuild[55944:288573] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_76c20 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_76c20 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -W'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_3d80f -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:07.622 xcodebuild[55958:288933] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_3d80f OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_3d80f doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wall'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_16997 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:08.899 xcodebuild[55972:289290] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_16997 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_16997 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wall'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_d7826 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:10.125 xcodebuild[55986:289643] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_d7826 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_d7826 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Werror=return-type'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_fe364 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:11.326 xcodebuild[56000:290013] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_fe364 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_fe364 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Werror=return-type'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c7762 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:12.572 xcodebuild[56014:290366] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c7762 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c7762 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Werror=non-virtual-dtor'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_b60ea -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:13.803 xcodebuild[56028:290800] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_b60ea OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_b60ea doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Werror=non-virtual-dtor'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_58b31 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:15.014 xcodebuild[56042:291153] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_58b31 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_58b31 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Werror=address'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_f345c -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:16.294 xcodebuild[56056:291510] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_f345c OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_f345c doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Werror=address'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_5e673 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:17.608 xcodebuild[56070:291886] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_5e673 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_5e673 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Werror=sequence-point'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_da5ed -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:19.097 xcodebuild[56084:292295] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_da5ed OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_da5ed doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Werror=sequence-point'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_ba2ba -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:20.553 xcodebuild[56098:292685] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_ba2ba OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_ba2ba doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wformat'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_aaf06 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:22.174 xcodebuild[56113:293111] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_aaf06 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_aaf06 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wformat'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_79002 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:24.512 xcodebuild[56128:293513] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_79002 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_79002 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wformat -Werror=format-security'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_d68ba -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:26.100 xcodebuild[56144:293905] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_d68ba OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_d68ba doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wformat -Werror=format-security'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_09794 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:27.437 xcodebuild[56158:294264] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_09794 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_09794 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wmissing-declarations'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c40c1 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:28.736 xcodebuild[56172:294623] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c40c1 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c40c1 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wmissing-declarations'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_d7266 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:30.088 xcodebuild[56186:294993] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_d7266 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_d7266 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wmissing-prototypes'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_6cefc -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:31.496 xcodebuild[56200:295403] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_6cefc OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_6cefc doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wmissing-prototypes'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_46f90 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:32.864 xcodebuild[56215:295789] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_46f90 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_46f90 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wstrict-prototypes'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_16507 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:34.181 xcodebuild[56229:296142] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_16507 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_16507 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wstrict-prototypes'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c45f2 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:35.528 xcodebuild[56243:296519] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c45f2 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c45f2 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wundef'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_d3815 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:37.904 xcodebuild[56263:296962] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_d3815 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_d3815 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wundef'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_4b3ef -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:39.381 xcodebuild[56278:297347] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_4b3ef OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_4b3ef doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Winit-self'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_e0354 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:40.717 xcodebuild[56293:297720] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_e0354 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_e0354 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Winit-self'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c287d -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:42.114 xcodebuild[56307:298090] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c287d OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c287d doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wpointer-arith'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_734e6 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:43.414 xcodebuild[56321:298459] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_734e6 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_734e6 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wpointer-arith'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_ce044 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:44.857 xcodebuild[56335:298817] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_ce044 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_ce044 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wshadow'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_bf8cb -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:46.223 xcodebuild[56350:299182] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_bf8cb OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_bf8cb doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wshadow'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_9831c -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:47.514 xcodebuild[56366:299546] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_9831c OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_9831c doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wsign-promo'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_af3ec -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:48.818 xcodebuild[56381:299909] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_af3ec OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_af3ec doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wsign-promo'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_80e1c -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:50.089 xcodebuild[56395:300267] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_80e1c OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_80e1c doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wuninitialized'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_19b41 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:51.392 xcodebuild[56409:300637] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_19b41 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_19b41 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wuninitialized'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_59f94 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:53.108 xcodebuild[56423:300994] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_59f94 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_59f94 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wno-delete-non-virtual-dtor'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c6db9 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:54.438 xcodebuild[56438:301363] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c6db9 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c6db9 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wno-delete-non-virtual-dtor'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_e8ddd -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:55.704 xcodebuild[56452:301720] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_e8ddd OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_e8ddd doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wno-unnamed-type-template-args'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_79098 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:57.049 xcodebuild[56466:302093] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_79098 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_79098 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wno-unnamed-type-template-args'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_f60e6 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:46:58.397 xcodebuild[56480:302449] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_f60e6 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_f60e6 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wno-comment'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_478d7 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:00.017 xcodebuild[56494:302827] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_478d7 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_478d7 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wno-comment'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_93fe6 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:01.532 xcodebuild[56510:303225] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_93fe6 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_93fe6 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -fdiagnostics-show-option'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_4772c -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:02.898 xcodebuild[56524:303588] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_4772c OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_4772c doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -fdiagnostics-show-option'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_97abd -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:04.449 xcodebuild[56538:303990] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_97abd OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_97abd doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Qunused-arguments'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_ff0d8 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:05.939 xcodebuild[56552:304346] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_ff0d8 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_ff0d8 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Qunused-arguments'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_3a3a3 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:07.483 xcodebuild[56566:304713] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_3a3a3 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_3a3a3 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -Wno-semicolon-before-method-body'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_842e2 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:08.838 xcodebuild[56580:305068] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_842e2 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_842e2 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.c'
check option: ' -Wno-semicolon-before-method-body'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_e9547 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:10.220 xcodebuild[56594:305453] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_e9547 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_e9547 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' -mfpu=vfpv3'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_c03e6 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:11.505 xcodebuild[56608:305806] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_c03e6 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_c03e6 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/cmake/checks/cpu_neon.cpp'
check option: ''
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_ae5e9 -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:12.800 xcodebuild[56622:306158] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_ae5e9 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_ae5e9 doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/cmake/checks/cpu_neon.cpp'
check option: ' -mfpu=neon'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_2046f -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:14.059 xcodebuild[56636:306512] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_2046f OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_2046f doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/cmake/checks/cpu_fp16.cpp'
check option: ''
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_a3e1f -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:15.348 xcodebuild[56650:306874] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_a3e1f OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_a3e1f doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/opencv-3.4.6/cmake/checks/cpu_fp16.cpp'
check option: ' -mfpu=neon-fp16'
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_bd88a -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:17.373 xcodebuild[56664:307245] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_bd88a OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_bd88a doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
Compilation failed:
source file: '/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp/src.cxx'
check option: ' '
===== BUILD LOG =====
Change Dir: /Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/CMakeFiles/CMakeTmp
Run Build Command(s):/Users/jeshua/Downloads/opencv-build/ios/build/build-armv7-iphoneos/xcodebuild_wrapper -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTC_6076b -configuration Release -hideShellScriptEnvironment
2019-06-19 17:47:18.754 xcodebuild[56680:307615] [MT] PluginLoading: Required plug-in compatibility UUID 07BAA045-2DD3-489F-B232-D1D4F8B92D2D for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs
User defaults from command line:
HideShellScriptEnvironment = YES
Build settings from command line:
ARCHS = armv7
IPHONEOS_DEPLOYMENT_TARGET = 12.0
SDKROOT = iphoneos13.0
Prepare build
note: Using legacy build system
=== BUILD TARGET cmTC_6076b OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug ===
Check dependencies
warning: The armv7 architecture is deprecated for your deployment target (iOS 12.0). You should update your ARCHS build setting to remove the armv7 architecture.
Code Signing Error: Bundle identifier is missing. cmTC_6076b doesn't have a bundle identifier. Add a value for PRODUCT_BUNDLE_IDENTIFIER in the build settings editor.
** BUILD FAILED **
The following build commands failed:
Check dependencies
(1 failure)
===== END =====
↧
Any methods to reduce the size of the iOS framework for Opencv
I deploy my ios app with opencv framework, though I only choose the arm64 and arm64e arch, but the size of framework is still 200MB+. In my app, I just use core.h and calib3d.h, so any methods to reduce the size of the iOS framework for Opencv. Thx~
↧
Custom Keras Model Using OpenCV
Hey,
So I was working on a project where I wanted be able to identify certain images using features. I was planning to use the OpenCV feature detection and then be able to port that whole algorithm to a Keras model so that I can run it on CoreML for iOS with pretty good frame rates.
Thanks!
↧
Detect Object in Portrait Mode Android & iOS
I am using OpenCV to detect rectangle in the portrait mode. I am getting some frame issue's, it does not capture and detect properly. Does OpenCV do support Portrait Mode in the real device?. in Android & iOS
↧
↧
Can I build OpenCV using CMake without extra modules?
I want to build only 4 main modules in the opencv source directory.
↧
copyTo with () operator is not working on IOS
I am getting Thread 1: Heap buffer overflow. when i run following code.
Actually I want to convert rectangle image to bigger square image and image should be centred.
It generates error on copyto function when there is range provided.
cv::Mat croppedImage;
cv::Mat(orig_image, roiF).copyTo(croppedImage);
cv::Mat(orig_image,roiF).clone();
int size = roiF.height > roiF.width ? roiF.height : roiF.width;
int offset_height = ((size) / 2 - (roiF.height) / 2);
int offset_width = ((size ) / 2 - (roiF.width) / 2);
cv::Mat resizeImage = cv::Mat(size, size , croppedImage.type(),new cv::Scalar(0,0,0,255));
if (offset_width > 0) {
cv::Range colSrcRange = cv::Range(0, roiF.width);
cv::Range rowSrcRange = cv::Range(0, roiF.height); //select maximum allowed cols
cv::Range colDestRange = cv::Range(offset_width, offset_width + roiF.width);
cv::Range rowDestRange = cv::Range(0, roiF.height + 0);
croppedImage(rowSrcRange, colSrcRange).copyTo(resizeImage(rowDestRange, colDestRange));
} else if (offset_height > 0) {
cv::Range colSrcRange =cv::Range(0, roiF.width); //select maximum allowed cols(*roiF).height
cv::Range rowSrcRange =cv::Range(0, roiF.height);
cv::Range colDestRange = cv::Range(0, roiF.width + 0);
cv::Range rowDestRange = cv::Range(offset_height, offset_height + roiF.height);
croppedImage(rowSrcRange, colSrcRange).copyTo(resizeImage(rowDestRange, colDestRange));
}
return [OpenCVWrapper UIImageFromCVMat:resizeImage];
↧
OpenCV build for Mac Catalyst/iOS 13 iOS app on Mac support?
I have been trying to build openCV libraries which would be compatible for mac catalyst (iOS app built for Mac which is a new feature on iOS 13/Mac 10.15 beta) without much success.
This is the command the python build script calls while building OpenCV framework for Mac...
xcodebuild MACOSX_DEPLOYMENT_TARGET=10.15 ARCHS=x86_64 -sdk macosx -configuration Release -parallelizeTargets -jobs 12 -target ALL_BUILD build
I am assuming I need to change this to something else as well as the xcode projects are to be created a little differently. But I am not sure what I need to change to make it work.
If I can get the .a files created for mac catalyst, I guess I can manually create the xcframeworks myself.
Has anyone been able to do it successfully?
↧
iOS OpenCV: Image matching with ORB leads to EXC_BAD_ACCESS
I'm fairly new to OpenCV and I'm trying to match images from the camera feed with provided descriptors for the images that shall be matched. However my Objective-C++ code currently crashes with EXC_BAD_ACCESS which leads me to believe that something has been released or is not present. I just can't quite find the culprit.
I'm using OpenCV 4.1.1 for iOS, Xcode 10.3 and iOS 12.4
I'm using Objective-C++ to speak to OpenCV and and Swift for all UI related things and the rest.
So here's what I've done so far.
I've set up the included CvVideoCamera and the camera image is displayed fine inside an UIImageView. (since this works fine with simple template matching I'll spare you with that code)
In my OpenCVWrapper.mm which is also the CvVideoCamera's delegate I do the following in processImage:(cv::Mat&)image;
CV_Assert(!image.empty());
cv::ORB *orb = cv::ORB::create();
cv::Mat descriptors, mask;
std::vector points;
CV_Assert(!orb->empty());
orb->detectAndCompute(image, mask, points, descriptors);
cv::DescriptorMatcher *matcher = cv::DescriptorMatcher::create(cv::BFMatcher::BRUTEFORCE) ;
std::vector> knnMatches;
NSArray *targetDescriptors = [[self delegate] descriptors];
for (SourceDescriptor *source in targetDescriptors) {
matcher->knnMatch(descriptors, source.mat.mat, knnMatches, 2);
float ratioThreshold = 0.f;
NSMutableArray *innerDistances = [@[] mutableCopy];
for (NSInteger counter = 0; counter < knnMatches.size(); counter++) {
const cv::DMatch& bestMatch = knnMatches[counter][0];
const cv::DMatch& betterMatch = knnMatches[counter][1];
float finalDistance = bestMatch.distance / betterMatch.distance;
if (finalDistance <= ratioThreshold) {
[innerDistances addObject:[NSNumber numberWithFloat:finalDistance]];
}
}
if ([innerDistances count] > 0) {
NSSortDescriptor *highestToLowest = [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:NO];
[innerDistances sortUsingDescriptors:[NSArray arrayWithObject:highestToLowest]];
Result *leresult = [[Result alloc] init];
NSNumber *score = (NSNumber *)[innerDistances objectAtIndex:0];
[leresult setScore:[score floatValue]];
[leresult setSourceDescriptor:source];
[result addObject:leresult];
}
}
My code however crashes at orb->detectAndCompute() with an EXC_BAD_ACCESS
As you can see from the code I'm checking whether the orb or image are empty which isn't the case.
Any help would be greatly appreciated. If any more information needs to be provided I will gladly do so.
↧
↧
OpenCV keeps bundling into my iOS swift framework
Im have created a framework for iOS that uses openCV.
No matter what I have tried I cannot get my framework to compile without bundling in all the openCV stuff it needs.
I want to be able to compile my framework and supple it to someone else who would then have to go and add openCV to their app.
I have tried compiling the Dynamic framework and adding that to my project. I have tried adding openCV via a pod, and I have tried adding the Dynamic openCV via a pod (which I just cant get to install it crashes for 10000 different reasons, perhaps its unsupported now)
To check im not expecting too much, I made a framework lets call this FrameworkA, I then made a second Framework frameoworkB
I Added frameworkA to FrameworkB and made it B call a function in A. I Then added B to a project, and tried to call the function in B that called A and voila it broke saying I needed to import framework A to my app. this is the exact behaviour I want when making my framework that uses openCV
I am tearing my hair out trying to find a solution to this so if someone could point me in the right direction that would great because I thought that I had found the solution after compiling it with the dynamic flag turned on but unfortunately that hasn't worked either and its just bundled it into my framework again....
Thank you in advance
↧
Opencv with iOS UIImageToMat returns a transparent image
Hello,
I use Opencv to cut out parts of the image. To do this, I take a UIImage as an input parameter and pass this image to the UIImageToMat function to have a matrix for later cutting. My concern is that I'm testing my application on two iPhones, the first one is an iPhone 6S with iOS version 12.3.1 and everything works fine. The second iPhone is an iPhone 7 with the version of iOS in 12.3.1, the code runs well and there is no error but it returns me a transparent image. Do you have any ideas to fix the problem.
↧
get frame and conver to image from a raw bytes array on iOS/macOS
Hi there,
So I have been working on a iOS app project in Swift to display camera output of a drone. The drone will send the h264 raw data/bytes via UDP to my local machine 0.0.0.0:11111.
My problem is, I'm too new to opencv2 APIs. I tried someting like
cv::VideoCapture cap = cv::VideoCapture("udp://0.0.0.0:11111");
bool opened = cap.isOpened();
however it's saying it's not implemented on macos/iOS. So far, I could get the byte array in Swift data structure, and should not be hard to conver to C types.
however I'm kind of new to C++, especially figuring out what APIs to use.
my goal would be being able to use opencv2 to display the camera output, my idea is looking for APIs to generate h264 content. Can somebody help on this? Like is there any tutorials for reading raw h264 encoded raw frame bytes?
e.g. in my guess, my code could looks like
Frame * frame = cv::generateFrame(rawH264Bytes)
opencv2.display(frame)
↧
VideoCapture with VideoCapture.Api.Images fails: OPENCV_HAVE_FILESYSTEM_SUPPORT is set to “FALSE” on iOS
Hello.
I tried implementing the videoCapture class in order to use the TwoPassStabilizer using VideoCapture.Api.Images api. This turns an exception that this is not implemented. Doing some more digging I realized that OPENCV_HAVE_FILESYSTEM_SUPPORT is set to “FALSE” when building for iOS. Can I ask why the file system support is turned off on iOS builds? Is there a way to bypass this? I really need to have video stabilization on iOS and currently opencv TwoPassStabilizer works in all other platforms (windows, mac, android) except iOS.
↧
↧
Starting an iOS Project: OpenCV Compatible with iOS 13?
Starting on iOS image processing project. Target device is one of the newer iPhones running iOS 13. Is OpenCV compatible with iOS 13?
↧
iOS cv.imshow() not working
I have a mobile app that I am building in ionic which uses WebRTC to display the rear camera feed on a page. I want to do some very simple OpenCV analysis on the video feed.
It works on Chrome, Safari, and Android but does not work when the project is deployed on to an iOS device. I am using the simplest OpenCV change - changing the feed to grayscale.
On all other devices - camera feed converted to grayscale
iOS/iPhone - canvas is plain black.
Example Project:
https://github.com/brandudno/ionic-opencv-camera
Specific Files:
HTML -> https://github.com/brandudno/ionic-opencv-camera/blob/master/src/app/pages/camera/camera.page.html
JS ->https://github.com/brandudno/ionic-opencv-camera/blob/master/src/app/pages/camera/camera.page.ts
to run the project..
clone project, run npm install, ionic cordova add platform ios, ionic cordova run ios --device
ionic - 5.0
openCV - 3.4
↧
How to get similarity value between two different images by using OpenCV in iOS
Hi, everyone, I'm new to this library.
I’m using OpenCV 4.3.0 in iOS. I’m confusing how to get similarity value between two different images. I got a base Flann matcher, match points, good match points now. If I just straightly use goodMatches.size()divided by matches.size(). I’m afraid that result is not exactly accurate.
Any help will be appreciated.
+ (double)orbmatchCompareImage:(UIImage *)image targetImage:(UIImage *)targetImage {
Mat imageMat;
UIImageToMat(image, imageMat);
Mat targetImageMat;
UIImageToMat(targetImage, targetImageMat);
if (imageMat.empty() || targetImageMat.empty()) {
return 0;
}
Mat imageGreyMat;
cvtColor(imageMat, imageGreyMat, COLOR_BGR2GRAY);
Mat targetImageGreyMat;
cvtColor(targetImageMat, targetImageGreyMat, COLOR_BGR2GRAY);
vector imageCat, targetImageCat;
auto orbDetector = ORB::create(1000);
Mat imageDescriptor, targetImagegDescriptor;
orbDetector -> detectAndCompute(imageGreyMat, Mat(), imageCat, imageDescriptor);
orbDetector -> detectAndCompute(targetImageGreyMat, Mat(), targetImageCat, targetImagegDescriptor);
flann::Index flannIndex(imageDescriptor, flann::LshIndexParams(12, 20, 2), cvflann::FLANN_DIST_HAMMING);
vector goodMatches;
Mat matchIndex(targetImagegDescriptor.rows, 2, CV_32SC1), matchDistance(targetImagegDescriptor.rows, 2, CV_32FC1);
if (!(targetImagegDescriptor.isContinuous() && matchIndex.isContinuous() && matchDistance.isContinuous())) {
return 0;
}
flannIndex.knnSearch(targetImagegDescriptor, matchIndex, matchDistance, 2);
// Lowe's algorithm, get good match points
for (int i = 0; i < matchDistance.rows; i++)
{
if (matchDistance.at(i, 0) < 0.8 * matchDistance.at(i, 1))
{
DMatch dmatches(i, matchIndex.at(i, 0), matchDistance.at(i, 0));
goodMatches.push_back(dmatches);
}
}
// How to get correct similarity value?
// printf("similary: %f\n", double(goodMatches.size()) / double(matchDistance.rows));
// printf("matchDistance rows: %d\ngoodMatches size: %lu\n", matchDistance.rows, goodMatches.size());
// double similary;
// similary = double(goodMatches.size()) / double(matchDistance.rows);
// return similary;
}
↧