twistedfall / opencv-rust

Rust bindings for OpenCV 3 & 4
MIT License
1.96k stars 160 forks source link

`cargo build` works, but running the app does not #537

Closed calthejuggler closed 2 months ago

calthejuggler commented 8 months ago

Description

Hello there 🙂

I'm having an issue where I'm able to build the opencv crate, but running the binary fails with the following output:

./target/release/opencv-test
dyld[36020]: symbol not found in flat namespace '__ZTIN2cv9ExceptionE'
fish: Job 1, './target/release/opencv-test' terminated by signal SIGABRT (Abort)

cargo run gives the same output. cargo run --verbose combines the two outputs above.

I installed opencv with Homebrew and pointed the DYLD_FALLBACK variable to the libclang.dylib directory (Xcode version).

I'm almost certain this is caused by the Public Beta version of MacOS that I'm on, but I thought I'd post it here to see if anybody else has had the same experience (or some ideas for how to get past it 😅).

Update

Tried the extra steps from this PR, but unfortunately, the same error occurs.

Details

Operating System: MacOS Sonoma 14.3 (Public Beta) Installed OpenCV With: brew install opencv OpenCV Version: 4.9.0 (This was harder to find than I thought it would be 😅) rustc Version: 1.75.0 (82e1608df 2023-12-21) Build Command Output:

       Fresh glob v0.3.1
       Fresh memchr v2.7.1
       Fresh regex-syntax v0.8.2
       Fresh once_cell v1.19.0
       Fresh dunce v1.0.4
       Fresh autocfg v1.1.0
       Fresh percent-encoding v2.3.1
       Fresh pkg-config v0.3.28
       Fresh libc v0.2.152
       Fresh aho-corasick v1.1.2
       Fresh shlex v1.2.0
       Fresh vcpkg v0.2.15
       Fresh regex-automata v0.4.3
       Fresh jobserver v0.1.26
       Fresh semver v1.0.21
       Fresh clang-sys v1.7.0
       Fresh regex v1.10.2
       Fresh cc v1.0.79
       Fresh num-traits v0.2.17
       Fresh anyhow v1.0.79
       Fresh clang v2.0.0
       Fresh opencv-binding-generator v0.84.0
       Fresh opencv v0.88.7
       Fresh opencv-test v0.1.0 (/Users/calthejuggler/Projects/rust/opencv-test)
    Finished dev [unoptimized + debuginfo] target(s) in 0.06s

After cargo clean:

RUST_BACKTRACE=full cargo build -vv
   Compiling libc v0.2.152
   Compiling glob v0.3.1
   Compiling memchr v2.7.1
   Compiling regex-syntax v0.8.2
   Compiling semver v1.0.21
   Compiling dunce v1.0.4
   Compiling once_cell v1.19.0
   Compiling percent-encoding v2.3.1
   Compiling autocfg v1.1.0
   Compiling shlex v1.2.0
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>:bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for
1, 2 or 3 byte search and single substring search.
' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name memchr --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=d0e1ffa409fb7cdb -C extra-filename=-d0e1ffa409fb7cdb --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.152 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=152 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=0b27bd34a8516bdf -C extra-filename=-0b27bd34a8516bdf --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/libc-0b27bd34a8516bdf -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=glob CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Support for matching file paths against Unix shell style patterns.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/glob' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=glob CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/glob' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name glob /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=d3b693db3c2180bd -C extra-filename=-d3b693db3c2180bd --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/semver-1.0.21 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Parser and evaluator for Cargo'\''s flavor of Semantic Versioning' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=semver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/semver' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.21 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=21 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/semver-1.0.21/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=aef8d09f2ceeab9c -C extra-filename=-aef8d09f2ceeab9c --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/semver-aef8d09f2ceeab9c -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=dunce CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.4 CARGO_PKG_AUTHORS='Kornel <kornel@geekhood.net>' CARGO_PKG_DESCRIPTION='Normalize Windows paths to the most compatible format, avoiding UNC where possible' CARGO_PKG_HOMEPAGE='https://lib.rs/crates/dunce' CARGO_PKG_LICENSE='CC0-1.0 OR MIT-0 OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dunce CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://gitlab.com/kornelski/dunce' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name dunce --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=7a474ec9badfe7e5 -C extra-filename=-7a474ec9badfe7e5 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.2 CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name regex_syntax --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' -C metadata=644f4a90c697872b -C extra-filename=-644f4a90c697872b --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=percent_encoding CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1 CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='Percent encoding and decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=percent-encoding CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url/' CARGO_PKG_RUST_VERSION=1.51 CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name percent_encoding --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=401f935bd7ca249b -C extra-filename=-401f935bd7ca249b --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shlex-1.2.0 CARGO_PKG_AUTHORS='comex <comexk@gmail.com>:Fenhl <fenhl@fenhl.net>' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name shlex /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shlex-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=04ab8449fa96f75a -C extra-filename=-04ab8449fa96f75a --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.19.0 CARGO_PKG_AUTHORS='Aleksey Kladov <aleksey.kladov@gmail.com>' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.19.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=19 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name once_cell --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.19.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' -C metadata=16acbf3b88676364 -C extra-filename=-16acbf3b88676364 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0 CARGO_PKG_AUTHORS='Josh Stone <cuviper@gmail.com>' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name autocfg /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=a2965298fbdb0e66 -C extra-filename=-a2965298fbdb0e66 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling pkg-config v0.3.28
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.28 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in
Cargo build scripts.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.30 CARGO_PKG_VERSION=0.3.28 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=28 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name pkg_config /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.28/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=b1728df86aba849b -C extra-filename=-b1728df86aba849b --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling vcpkg v0.2.15
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=vcpkg CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vcpkg-0.2.15 CARGO_PKG_AUTHORS='Jim McGrath <jimmc2@gmail.com>' CARGO_PKG_DESCRIPTION='A library to find native dependencies in a vcpkg tree at build
time in order to be used in Cargo build scripts.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=vcpkg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mcgoo/vcpkg-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name vcpkg /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vcpkg-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=6506e07b01159cec -C extra-filename=-6506e07b01159cec --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling anyhow v1.0.79
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.79 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=79 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=d541fb7cad70848b -C extra-filename=-d541fb7cad70848b --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/anyhow-d541fb7cad70848b -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling num-traits v0.2.17
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.17 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.2.17 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=17 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.17/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=db4a4a907bc4f9a7 -C extra-filename=-db4a4a907bc4f9a7 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/num-traits-db4a4a907bc4f9a7 -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern autocfg=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libautocfg-a2965298fbdb0e66.rlib --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling clang-sys v1.7.0
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.7.0 CARGO_PKG_AUTHORS='Kyle Mayes <kyle@mayeses.com>' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.7.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.7.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' -C metadata=01c7efb8c32dcfd1 -C extra-filename=-01c7efb8c32dcfd1 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/clang-sys-01c7efb8c32dcfd1 -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern glob=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libglob-d3b693db3c2180bd.rlib --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling aho-corasick v1.1.2
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=aho_corasick CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.2 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='Fast multiple substring searching.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=aho-corasick CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=1.1.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name aho_corasick --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="perf-literal"' --cfg 'feature="std"' -C metadata=2d1f76f72a28d71e -C extra-filename=-2d1f76f72a28d71e --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern memchr=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libmemchr-d0e1ffa409fb7cdb.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.17 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.2.17 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=17 CARGO_PKG_VERSION_PRE='' DEBUG=true DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/num-traits-a814b83ffeb9bcd9/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/num-traits-db4a4a907bc4f9a7/build-script-build`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/semver-1.0.21 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Parser and evaluator for Cargo'\''s flavor of Semantic Versioning' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=semver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/semver' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.21 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=21 CARGO_PKG_VERSION_PRE='' DEBUG=false DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/semver-7a19fa1138fafe25/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/semver-aef8d09f2ceeab9c/build-script-build`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.79 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=79 CARGO_PKG_VERSION_PRE='' DEBUG=true DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/anyhow-bc414dd220b9d86a/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/anyhow-d541fb7cad70848b/build-script-build`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.152 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=152 CARGO_PKG_VERSION_PRE='' DEBUG=true DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/libc-ece1bc1041b31d1e/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/libc-0b27bd34a8516bdf/build-script-build`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_CLANG_3_5=1 CARGO_FEATURE_CLANG_3_6=1 CARGO_FEATURE_CLANG_3_7=1 CARGO_FEATURE_CLANG_3_8=1 CARGO_FEATURE_CLANG_3_9=1 CARGO_FEATURE_CLANG_4_0=1 CARGO_FEATURE_CLANG_5_0=1 CARGO_FEATURE_CLANG_6_0=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.7.0 CARGO_MANIFEST_LINKS=clang CARGO_PKG_AUTHORS='Kyle Mayes <kyle@mayeses.com>' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.7.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=false DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/clang-sys-2b1ac4902a806a64/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/clang-sys-01c7efb8c32dcfd1/build-script-build`
[num-traits 0.2.17] cargo:rustc-cfg=has_to_int_unchecked
[semver 1.0.21] cargo:rerun-if-changed=build.rs
[num-traits 0.2.17] cargo:rustc-cfg=has_reverse_bits
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=semver CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/semver-1.0.21 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Parser and evaluator for Cargo'\''s flavor of Semantic Versioning' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=semver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/semver' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.21 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=21 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/semver-7a19fa1138fafe25/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name semver --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/semver-1.0.21/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=3006b8663fb26318 -C extra-filename=-3006b8663fb26318 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
[num-traits 0.2.17] cargo:rustc-cfg=has_leading_trailing_ones
[num-traits 0.2.17] cargo:rustc-cfg=has_div_euclid
[num-traits 0.2.17] cargo:rustc-cfg=has_copysign
[anyhow 1.0.79] cargo:rerun-if-changed=build/probe.rs
[num-traits 0.2.17] cargo:rustc-cfg=has_is_subnormal
[anyhow 1.0.79] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
[num-traits 0.2.17] cargo:rustc-cfg=has_int_to_from_bytes
[anyhow 1.0.79] cargo:rustc-cfg=std_backtrace
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.79 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=79 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/anyhow-bc414dd220b9d86a/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name anyhow --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=3be872769cd50a6d -C extra-filename=-3be872769cd50a6d --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup --cfg std_backtrace`
[num-traits 0.2.17] cargo:rustc-cfg=has_float_to_from_bytes
[num-traits 0.2.17] cargo:rerun-if-changed=build.rs
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.17 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.2.17 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=17 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/num-traits-a814b83ffeb9bcd9/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name num_traits --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.17/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=a96e4560f8145a41 -C extra-filename=-a96e4560f8145a41 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup --cfg has_to_int_unchecked --cfg has_reverse_bits --cfg has_leading_trailing_ones --cfg has_div_euclid --cfg has_copysign --cfg has_is_subnormal --cfg has_int_to_from_bytes --cfg has_float_to_from_bytes`
[libc 0.2.152] cargo:rerun-if-changed=build.rs
[libc 0.2.152] cargo:rustc-cfg=freebsd11
[libc 0.2.152] cargo:rustc-cfg=libc_priv_mod_use
[libc 0.2.152] cargo:rustc-cfg=libc_union
[libc 0.2.152] cargo:rustc-cfg=libc_const_size_of
[libc 0.2.152] cargo:rustc-cfg=libc_align
[libc 0.2.152] cargo:rustc-cfg=libc_int128
[libc 0.2.152] cargo:rustc-cfg=libc_core_cvoid
[libc 0.2.152] cargo:rustc-cfg=libc_packedN
[libc 0.2.152] cargo:rustc-cfg=libc_cfg_target_vendor
[libc 0.2.152] cargo:rustc-cfg=libc_non_exhaustive
[libc 0.2.152] cargo:rustc-cfg=libc_long_array
[libc 0.2.152] cargo:rustc-cfg=libc_ptr_addr_of
[libc 0.2.152] cargo:rustc-cfg=libc_underscore_const_names
[libc 0.2.152] cargo:rustc-cfg=libc_const_extern_fn
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.152 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=152 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/libc-ece1bc1041b31d1e/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name libc /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=602032d812c256b1 -C extra-filename=-602032d812c256b1 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup --cfg freebsd11 --cfg libc_priv_mod_use --cfg libc_union --cfg libc_const_size_of --cfg libc_align --cfg libc_int128 --cfg libc_core_cvoid --cfg libc_packedN --cfg libc_cfg_target_vendor --cfg libc_non_exhaustive --cfg libc_long_array --cfg libc_ptr_addr_of --cfg libc_underscore_const_names --cfg libc_const_extern_fn`
[clang-sys 1.7.0] cargo:rustc-link-search=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib
[clang-sys 1.7.0] cargo:rustc-link-lib=dylib=clang
   Compiling regex-automata v0.4.3
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=regex_automata CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.3 CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='Automata construction and matching using regular expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-automata CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-automata' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name regex_automata --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="dfa-onepass"' --cfg 'feature="hybrid"' --cfg 'feature="meta"' --cfg 'feature="nfa-backtrack"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-literal-multisubstring"' --cfg 'feature="perf-literal-substring"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --cfg 'feature="unicode-word-boundary"' -C metadata=f6d107b7a90e893c -C extra-filename=-f6d107b7a90e893c --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern aho_corasick=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libaho_corasick-2d1f76f72a28d71e.rmeta --extern memchr=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libmemchr-d0e1ffa409fb7cdb.rmeta --extern regex_syntax=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libregex_syntax-644f4a90c697872b.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=clang_sys CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.7.0 CARGO_PKG_AUTHORS='Kyle Mayes <kyle@mayeses.com>' CARGO_PKG_DESCRIPTION='Rust bindings for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.7.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/clang-sys-2b1ac4902a806a64/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name clang_sys /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' -C metadata=fb69b486f8fb90a2 -C extra-filename=-fb69b486f8fb90a2 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern glob=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libglob-d3b693db3c2180bd.rmeta --extern libc=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/liblibc-602032d812c256b1.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup -L /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib -l dylib=clang`
   Compiling jobserver v0.1.26
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=jobserver CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.26 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='An implementation of the GNU make jobserver for Rust
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/jobserver-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=jobserver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/jobserver-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.26 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=26 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name jobserver --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.26/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=29989d2a58b1bb08 -C extra-filename=-29989d2a58b1bb08 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern libc=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/liblibc-602032d812c256b1.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling cc v1.0.79
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.79 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native
C compiler to compile native C code into a static archive to be linked into Rust
code.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.79 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=79 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name cc --edition=2018 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.79/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="jobserver"' --cfg 'feature="parallel"' -C metadata=37801c09c723b8e1 -C extra-filename=-37801c09c723b8e1 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern jobserver=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libjobserver-29989d2a58b1bb08.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling clang v2.0.0
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=clang CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-2.0.0 CARGO_PKG_AUTHORS='Kyle Mayes <kyle@mayeses.com>' CARGO_PKG_DESCRIPTION='A somewhat idiomatic Rust wrapper for libclang.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clang CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/KyleMayes/clang-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name clang /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="clang_3_5"' --cfg 'feature="clang_3_6"' --cfg 'feature="clang_3_7"' --cfg 'feature="clang_3_8"' --cfg 'feature="clang_3_9"' --cfg 'feature="clang_4_0"' --cfg 'feature="clang_5_0"' --cfg 'feature="clang_6_0"' -C metadata=5ce1623f7252891e -C extra-filename=-5ce1623f7252891e --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern clang_sys=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libclang_sys-fb69b486f8fb90a2.rmeta --extern libc=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/liblibc-602032d812c256b1.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup -L /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib`
   Compiling regex v1.10.2
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.10.2 CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses
finite automata and guarantees linear time matching on all inputs.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.10.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name regex --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="perf"' --cfg 'feature="perf-backtrack"' --cfg 'feature="perf-cache"' --cfg 'feature="perf-dfa"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-onepass"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' -C metadata=28eb1ab5c4e1fa42 -C extra-filename=-28eb1ab5c4e1fa42 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern aho_corasick=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libaho_corasick-2d1f76f72a28d71e.rmeta --extern memchr=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libmemchr-d0e1ffa409fb7cdb.rmeta --extern regex_automata=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libregex_automata-f6d107b7a90e893c.rmeta --extern regex_syntax=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libregex_syntax-644f4a90c697872b.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup`
   Compiling opencv-binding-generator v0.84.0
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=opencv_binding_generator CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-binding-generator-0.84.0 CARGO_PKG_AUTHORS='Pro <twisted.fall@gmail.com>' CARGO_PKG_DESCRIPTION='Binding generator for opencv crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv-binding-generator CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/twistedfall/opencv-rust' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.84.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=84 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name opencv_binding_generator --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-binding-generator-0.84.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C metadata=b39e8c6d70108cfc -C extra-filename=-b39e8c6d70108cfc --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern clang=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libclang-5ce1623f7252891e.rmeta --extern clang_sys=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libclang_sys-fb69b486f8fb90a2.rmeta --extern dunce=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libdunce-7a474ec9badfe7e5.rmeta --extern once_cell=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libonce_cell-16acbf3b88676364.rmeta --extern percent_encoding=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libpercent_encoding-401f935bd7ca249b.rmeta --extern regex=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libregex-28eb1ab5c4e1fa42.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup -L /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib`
   Compiling opencv v0.88.7
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7 CARGO_PKG_AUTHORS='Pro <twisted.fall@gmail.com>:Mathieu Poumeyrol <kali@zoy.org>' CARGO_PKG_DESCRIPTION='Rust bindings for OpenCV' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/twistedfall/opencv-rust' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.88.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=88 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name build_script_build --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="alphamat"' --cfg 'feature="aruco"' --cfg 'feature="aruco_detector"' --cfg 'feature="barcode"' --cfg 'feature="bgsegm"' --cfg 'feature="bioinspired"' --cfg 'feature="calib3d"' --cfg 'feature="ccalib"' --cfg 'feature="cudaarithm"' --cfg 'feature="cudabgsegm"' --cfg 'feature="cudacodec"' --cfg 'feature="cudafeatures2d"' --cfg 'feature="cudafilters"' --cfg 'feature="cudaimgproc"' --cfg 'feature="cudaobjdetect"' --cfg 'feature="cudaoptflow"' --cfg 'feature="cudastereo"' --cfg 'feature="cudawarping"' --cfg 'feature="cvv"' --cfg 'feature="default"' --cfg 'feature="dnn"' --cfg 'feature="dnn_superres"' --cfg 'feature="dpm"' --cfg 'feature="face"' --cfg 'feature="features2d"' --cfg 'feature="flann"' --cfg 'feature="freetype"' --cfg 'feature="fuzzy"' --cfg 'feature="gapi"' --cfg 'feature="hdf"' --cfg 'feature="hfs"' --cfg 'feature="highgui"' --cfg 'feature="img_hash"' --cfg 'feature="imgcodecs"' --cfg 'feature="imgproc"' --cfg 'feature="intensity_transform"' --cfg 'feature="line_descriptor"' --cfg 'feature="mcc"' --cfg 'feature="ml"' --cfg 'feature="objdetect"' --cfg 'feature="optflow"' --cfg 'feature="ovis"' --cfg 'feature="phase_unwrapping"' --cfg 'feature="photo"' --cfg 'feature="plot"' --cfg 'feature="quality"' --cfg 'feature="rapid"' --cfg 'feature="rgbd"' --cfg 'feature="saliency"' --cfg 'feature="sfm"' --cfg 'feature="shape"' --cfg 'feature="stereo"' --cfg 'feature="stitching"' --cfg 'feature="structured_light"' --cfg 'feature="superres"' --cfg 'feature="surface_matching"' --cfg 'feature="text"' --cfg 'feature="tracking"' --cfg 'feature="video"' --cfg 'feature="videoio"' --cfg 'feature="videostab"' --cfg 'feature="viz"' --cfg 'feature="wechat_qrcode"' --cfg 'feature="xfeatures2d"' --cfg 'feature="ximgproc"' --cfg 'feature="xobjdetect"' --cfg 'feature="xphoto"' -C metadata=f1d1efeb488f4acb -C extra-filename=-f1d1efeb488f4acb --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern cc=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libcc-37801c09c723b8e1.rlib --extern dunce=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libdunce-7a474ec9badfe7e5.rlib --extern jobserver=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libjobserver-29989d2a58b1bb08.rlib --extern once_cell=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libonce_cell-16acbf3b88676364.rlib --extern opencv_binding_generator=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libopencv_binding_generator-b39e8c6d70108cfc.rlib --extern pkg_config=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libpkg_config-b1728df86aba849b.rlib --extern semver=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libsemver-3006b8663fb26318.rlib --extern shlex=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libshlex-04ab8449fa96f75a.rlib --extern vcpkg=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libvcpkg-6506e07b01159cec.rlib --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup -L /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib`
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ARCH=x86_64 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_FEATURE=cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3 CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=macos CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=apple CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Clink-arg=-undefined-Clink-arg=dynamic_lookup' CARGO_FEATURE_ALPHAMAT=1 CARGO_FEATURE_ARUCO=1 CARGO_FEATURE_ARUCO_DETECTOR=1 CARGO_FEATURE_BARCODE=1 CARGO_FEATURE_BGSEGM=1 CARGO_FEATURE_BIOINSPIRED=1 CARGO_FEATURE_CALIB3D=1 CARGO_FEATURE_CCALIB=1 CARGO_FEATURE_CUDAARITHM=1 CARGO_FEATURE_CUDABGSEGM=1 CARGO_FEATURE_CUDACODEC=1 CARGO_FEATURE_CUDAFEATURES2D=1 CARGO_FEATURE_CUDAFILTERS=1 CARGO_FEATURE_CUDAIMGPROC=1 CARGO_FEATURE_CUDAOBJDETECT=1 CARGO_FEATURE_CUDAOPTFLOW=1 CARGO_FEATURE_CUDASTEREO=1 CARGO_FEATURE_CUDAWARPING=1 CARGO_FEATURE_CVV=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DNN=1 CARGO_FEATURE_DNN_SUPERRES=1 CARGO_FEATURE_DPM=1 CARGO_FEATURE_FACE=1 CARGO_FEATURE_FEATURES2D=1 CARGO_FEATURE_FLANN=1 CARGO_FEATURE_FREETYPE=1 CARGO_FEATURE_FUZZY=1 CARGO_FEATURE_GAPI=1 CARGO_FEATURE_HDF=1 CARGO_FEATURE_HFS=1 CARGO_FEATURE_HIGHGUI=1 CARGO_FEATURE_IMGCODECS=1 CARGO_FEATURE_IMGPROC=1 CARGO_FEATURE_IMG_HASH=1 CARGO_FEATURE_INTENSITY_TRANSFORM=1 CARGO_FEATURE_LINE_DESCRIPTOR=1 CARGO_FEATURE_MCC=1 CARGO_FEATURE_ML=1 CARGO_FEATURE_OBJDETECT=1 CARGO_FEATURE_OPTFLOW=1 CARGO_FEATURE_OVIS=1 CARGO_FEATURE_PHASE_UNWRAPPING=1 CARGO_FEATURE_PHOTO=1 CARGO_FEATURE_PLOT=1 CARGO_FEATURE_QUALITY=1 CARGO_FEATURE_RAPID=1 CARGO_FEATURE_RGBD=1 CARGO_FEATURE_SALIENCY=1 CARGO_FEATURE_SFM=1 CARGO_FEATURE_SHAPE=1 CARGO_FEATURE_STEREO=1 CARGO_FEATURE_STITCHING=1 CARGO_FEATURE_STRUCTURED_LIGHT=1 CARGO_FEATURE_SUPERRES=1 CARGO_FEATURE_SURFACE_MATCHING=1 CARGO_FEATURE_TEXT=1 CARGO_FEATURE_TRACKING=1 CARGO_FEATURE_VIDEO=1 CARGO_FEATURE_VIDEOIO=1 CARGO_FEATURE_VIDEOSTAB=1 CARGO_FEATURE_VIZ=1 CARGO_FEATURE_WECHAT_QRCODE=1 CARGO_FEATURE_XFEATURES2D=1 CARGO_FEATURE_XIMGPROC=1 CARGO_FEATURE_XOBJDETECT=1 CARGO_FEATURE_XPHOTO=1 CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7 CARGO_PKG_AUTHORS='Pro <twisted.fall@gmail.com>:Mathieu Poumeyrol <kali@zoy.org>' CARGO_PKG_DESCRIPTION='Rust bindings for OpenCV' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/twistedfall/opencv-rust' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.88.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=88 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DEBUG=true DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/Projects/rust/opencv-test/target/debug:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' HOST=x86_64-apple-darwin NUM_JOBS=10 OPT_LEVEL=0 OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out PROFILE=debug RUSTC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc RUSTDOC=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustdoc TARGET=x86_64-apple-darwin /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build`
[opencv 0.88.7] === Crate version: Some("0.88.7")
[opencv 0.88.7] === Environment configuration:
[opencv 0.88.7] ===   OPENCV_PACKAGE_NAME = None
[opencv 0.88.7] ===   OPENCV_PKGCONFIG_NAME = None
[opencv 0.88.7] ===   OPENCV_CMAKE_NAME = None
[opencv 0.88.7] ===   OPENCV_CMAKE_BIN = None
[opencv 0.88.7] ===   OPENCV_VCPKG_NAME = None
[opencv 0.88.7] ===   OPENCV_LINK_LIBS = None
[opencv 0.88.7] ===   OPENCV_LINK_PATHS = None
[opencv 0.88.7] ===   OPENCV_INCLUDE_PATHS = None
[opencv 0.88.7] ===   OPENCV_DISABLE_PROBES = None
[opencv 0.88.7] ===   OPENCV_MSVC_CRT = None
[opencv 0.88.7] ===   CMAKE_PREFIX_PATH = None
[opencv 0.88.7] ===   OpenCV_DIR = None
[opencv 0.88.7] ===   PKG_CONFIG_PATH = None
[opencv 0.88.7] ===   VCPKG_ROOT = None
[opencv 0.88.7] ===   VCPKGRS_DYNAMIC = None
[opencv 0.88.7] ===   VCPKGRS_TRIPLET = None
[opencv 0.88.7] ===   OCVRS_DOCS_GENERATE_DIR = None
[opencv 0.88.7] ===   DOCS_RS = None
[opencv 0.88.7] ===   PATH = Some("/Users/calthejuggler/.bun/bin:/Users/calthejuggler/Library/pnpm:/Users/calthejuggler/.pyenv/shims:/Users/calthejuggler/.nvm/versions/node/v18.18.2/bin:/Users/calthejuggler/.pyenv/bin:/opt/homebrew/sbin:/Users/calthejuggler/.cargo/bin:/opt/homebrew/bin:/usr/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/usr/local/share/dotnet:~/.dotnet/tools:/usr/local/go/bin:/Users/calthejuggler/.bun/bin:/Users/calthejuggler/Library/pnpm:/Users/calthejuggler/.sdkman/candidates/java/current/bin:/Users/calthejuggler/.sdkman/candidates/gradle/current/bin:/Users/calthejuggler/.nvm/versions/node/v18.18.2/bin:/Users/calthejuggler/FlutterDev/flutter/bin:/Users/calthejuggler/FlutterDev/flutter/bin:/usr/local/bin")
[opencv 0.88.7] === Enabled features:
[opencv 0.88.7] ===   ALPHAMAT
[opencv 0.88.7] ===   ARUCO
[opencv 0.88.7] ===   ARUCO_DETECTOR
[opencv 0.88.7] ===   BARCODE
[opencv 0.88.7] ===   BGSEGM
[opencv 0.88.7] ===   BIOINSPIRED
[opencv 0.88.7] ===   CALIB3D
[opencv 0.88.7] ===   CCALIB
[opencv 0.88.7] ===   CUDAARITHM
[opencv 0.88.7] ===   CUDABGSEGM
[opencv 0.88.7] ===   CUDACODEC
[opencv 0.88.7] ===   CUDAFEATURES2D
[opencv 0.88.7] ===   CUDAFILTERS
[opencv 0.88.7] ===   CUDAIMGPROC
[opencv 0.88.7] ===   CUDAOBJDETECT
[opencv 0.88.7] ===   CUDAOPTFLOW
[opencv 0.88.7] ===   CUDASTEREO
[opencv 0.88.7] ===   CUDAWARPING
[opencv 0.88.7] ===   CVV
[opencv 0.88.7] ===   DEFAULT
[opencv 0.88.7] ===   DNN
[opencv 0.88.7] ===   DNN_SUPERRES
[opencv 0.88.7] ===   DPM
[opencv 0.88.7] ===   FACE
[opencv 0.88.7] ===   FEATURES2D
[opencv 0.88.7] ===   FLANN
[opencv 0.88.7] ===   FREETYPE
[opencv 0.88.7] ===   FUZZY
[opencv 0.88.7] ===   GAPI
[opencv 0.88.7] ===   HDF
[opencv 0.88.7] ===   HFS
[opencv 0.88.7] ===   HIGHGUI
[opencv 0.88.7] ===   IMGCODECS
[opencv 0.88.7] ===   IMGPROC
[opencv 0.88.7] ===   IMG_HASH
[opencv 0.88.7] ===   INTENSITY_TRANSFORM
[opencv 0.88.7] ===   LINE_DESCRIPTOR
[opencv 0.88.7] ===   MCC
[opencv 0.88.7] ===   ML
[opencv 0.88.7] ===   OBJDETECT
[opencv 0.88.7] ===   OPTFLOW
[opencv 0.88.7] ===   OVIS
[opencv 0.88.7] ===   PHASE_UNWRAPPING
[opencv 0.88.7] ===   PHOTO
[opencv 0.88.7] ===   PLOT
[opencv 0.88.7] ===   QUALITY
[opencv 0.88.7] ===   RAPID
[opencv 0.88.7] ===   RGBD
[opencv 0.88.7] ===   SALIENCY
[opencv 0.88.7] ===   SFM
[opencv 0.88.7] ===   SHAPE
[opencv 0.88.7] ===   STEREO
[opencv 0.88.7] ===   STITCHING
[opencv 0.88.7] ===   STRUCTURED_LIGHT
[opencv 0.88.7] ===   SUPERRES
[opencv 0.88.7] ===   SURFACE_MATCHING
[opencv 0.88.7] ===   TEXT
[opencv 0.88.7] ===   TRACKING
[opencv 0.88.7] ===   VIDEO
[opencv 0.88.7] ===   VIDEOIO
[opencv 0.88.7] ===   VIDEOSTAB
[opencv 0.88.7] ===   VIZ
[opencv 0.88.7] ===   WECHAT_QRCODE
[opencv 0.88.7] ===   XFEATURES2D
[opencv 0.88.7] ===   XIMGPROC
[opencv 0.88.7] ===   XOBJDETECT
[opencv 0.88.7] ===   XPHOTO
[opencv 0.88.7] === Detected probe priority based on environment vars: pkg_config: false, cmake: false, vcpkg: false
[opencv 0.88.7] === Probing the OpenCV library in the following order: environment, pkg_config, cmake, vcpkg_cmake, vcpkg
[opencv 0.88.7] === Can't probe using: environment, continuing with other methods because: Some environment variables are missing
[opencv 0.88.7] === Probing OpenCV library using pkg_config
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_NO_PKG_CONFIG
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV4_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64-apple-darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_x86_64_apple_darwin
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR
[opencv 0.88.7] === Successfully probed using: pkg_config
[opencv 0.88.7] === OpenCV library configuration: Library {
[opencv 0.88.7]     include_paths: [
[opencv 0.88.7]         "/opt/homebrew/opt/opencv/include/opencv4",
[opencv 0.88.7]     ],
[opencv 0.88.7]     version: Version {
[opencv 0.88.7]         major: 4,
[opencv 0.88.7]         minor: 8,
[opencv 0.88.7]         patch: 1,
[opencv 0.88.7]     },
[opencv 0.88.7]     cargo_metadata: [
[opencv 0.88.7]         "cargo:rustc-link-search=/opt/homebrew/opt/opencv/lib",
[opencv 0.88.7]         "cargo:rustc-link-search=framework=/opt/homebrew/opt/opencv/lib",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_gapi",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_stitching",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_alphamat",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_aruco",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_bgsegm",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_bioinspired",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_ccalib",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_dnn_objdetect",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_dnn_superres",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_dpm",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_face",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_freetype",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_fuzzy",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_hfs",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_img_hash",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_intensity_transform",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_line_descriptor",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_mcc",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_quality",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_rapid",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_reg",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_rgbd",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_saliency",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_sfm",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_stereo",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_structured_light",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_phase_unwrapping",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_superres",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_optflow",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_surface_matching",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_tracking",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_highgui",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_datasets",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_text",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_plot",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_videostab",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_videoio",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_viz",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_wechat_qrcode",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_xfeatures2d",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_shape",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_ml",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_ximgproc",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_video",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_xobjdetect",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_objdetect",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_calib3d",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_imgcodecs",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_features2d",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_dnn",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_flann",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_xphoto",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_photo",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_imgproc",
[opencv 0.88.7]         "cargo:rustc-link-lib=opencv_core",
[opencv 0.88.7]     ],
[opencv 0.88.7] }
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_opencv_branch_4
[opencv 0.88.7] === Detected OpenCV module header dir at: /opt/homebrew/opt/opencv/include/opencv4/opencv2
[opencv 0.88.7] === Found OpenCV version: 4.8.1 in headers located at: /opt/homebrew/opt/opencv/include/opencv4
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_PACKAGE_NAME
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_PKGCONFIG_NAME
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_CMAKE_NAME
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_CMAKE_BIN
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_VCPKG_NAME
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_LINK_LIBS
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_LINK_PATHS
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_INCLUDE_PATHS
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_DISABLE_PROBES
[opencv 0.88.7] cargo:rerun-if-env-changed=OPENCV_MSVC_CRT
[opencv 0.88.7] cargo:rerun-if-env-changed=CMAKE_PREFIX_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=OpenCV_DIR
[opencv 0.88.7] cargo:rerun-if-env-changed=PKG_CONFIG_PATH
[opencv 0.88.7] cargo:rerun-if-env-changed=VCPKG_ROOT
[opencv 0.88.7] cargo:rerun-if-env-changed=VCPKGRS_DYNAMIC
[opencv 0.88.7] cargo:rerun-if-env-changed=VCPKGRS_TRIPLET
[opencv 0.88.7] cargo:rerun-if-env-changed=OCVRS_DOCS_GENERATE_DIR
[opencv 0.88.7] cargo:rerun-if-env-changed=DOCS_RS
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/bioinspired.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/gapi.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/face.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/sfm.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/hdf.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/xfeatures2d.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/photo.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/alphamat.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/ccalib.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/dnn.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/videoio.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/manual-core.cpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/core.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/ocvrs_common.hpp
[opencv 0.88.7] cargo:rerun-if-changed=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/aruco.hpp
[opencv 0.88.7] cargo:rerun-if-changed=Cargo.toml
[opencv 0.88.7] === Generating code in: /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out
[opencv 0.88.7] === Placing generated bindings into: /Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/opencv
[opencv 0.88.7] === Using OpenCV headers from: /opt/homebrew/opt/opencv/include/opencv4
[opencv 0.88.7] === Clang: Apple clang version 15.0.0 (clang-1500.1.0.2.5)
[opencv 0.88.7] === Clang command line args: [
[opencv 0.88.7]     "-isystem/usr/local/include",
[opencv 0.88.7]     "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1",
[opencv 0.88.7]     "-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include",
[opencv 0.88.7]     "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include",
[opencv 0.88.7]     "-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include",
[opencv 0.88.7]     "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks",
[opencv 0.88.7]     "-I/opt/homebrew/Cellar/opencv/4.8.1_5/include/opencv4",
[opencv 0.88.7]     "-F/opt/homebrew/Cellar/opencv/4.8.1_5/include/opencv4",
[opencv 0.88.7]     "-I/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp",
[opencv 0.88.7]     "-F/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp",
[opencv 0.88.7]     "-DOCVRS_PARSING_HEADERS",
[opencv 0.88.7]     "-includeocvrs_common.hpp",
[opencv 0.88.7]     "-std=c++14",
[opencv 0.88.7] ]
[opencv 0.88.7] === Using environment job server with the the amount of available jobs: 10
[opencv 0.88.7] === Generating 52 modules
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "alphamat" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "aruco" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "calib3d" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "bgsegm" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "bioinspired" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "ccalib" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "core" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "dnn" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "dnn_superres" ""
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "dpm" ""
[opencv 0.88.7] === Generated: alphamat in 2.811122292s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "face" ""
[opencv 0.88.7] === Generated: dpm in 2.923172958s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "features2d" ""
[opencv 0.88.7] === Generated: dnn_superres in 2.953138417s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "flann" ""
[opencv 0.88.7] === Generated: bioinspired in 3.024414584s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "freetype" ""
[opencv 0.88.7] === Generated: bgsegm in 3.068849542s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "fuzzy" ""
[opencv 0.88.7] === Generated: aruco in 3.242415166s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "gapi" ""
[opencv 0.88.7] === Generated: ccalib in 3.557490417s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "hfs" ""
[opencv 0.88.7] === Generated: calib3d in 4.712122041s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "highgui" ""
[opencv 0.88.7] === Generated: freetype in 2.31928275s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "img_hash" ""
[opencv 0.88.7] === Generated: flann in 2.483918417s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "imgcodecs" ""
[opencv 0.88.7] === Generated: fuzzy in 2.378466583s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "imgproc" ""
[opencv 0.88.7] === Generated: face in 3.023814083s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "intensity_transform" ""
[opencv 0.88.7] === Generated: hfs in 2.337456542s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "line_descriptor" ""
[opencv 0.88.7] === Generated: features2d in 3.005239125s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "mcc" ""
[opencv 0.88.7] === Generated: dnn in 5.96109925s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "ml" ""
[opencv 0.88.7] === Generated: gapi in 3.89703575s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "objdetect" ""
[opencv 0.88.7] === Generated: highgui in 2.436994833s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "optflow" ""
[opencv 0.88.7] === Generated: core in 7.593416541s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "phase_unwrapping" ""
[opencv 0.88.7] === Generated: img_hash in 2.353454834s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "photo" ""
[opencv 0.88.7] === Generated: imgcodecs in 2.342918625s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "plot" ""
[opencv 0.88.7] === Generated: intensity_transform in 2.406533s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "quality" ""
[opencv 0.88.7] === Generated: mcc in 2.619039583s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "rapid" ""
[opencv 0.88.7] === Generated: line_descriptor in 2.720226916s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "rgbd" ""
[opencv 0.88.7] === Generated: ml in 3.194546167s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "saliency" ""
[opencv 0.88.7] === Generated: imgproc in 4.149890041s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "sfm" ""
[opencv 0.88.7] === Generated: phase_unwrapping in 2.549545542s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "shape" ""
[opencv 0.88.7] === Generated: optflow in 3.122979375s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "stereo" ""
[opencv 0.88.7] === Generated: plot in 2.579988166s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "stitching" ""
[opencv 0.88.7] === Generated: photo in 3.122552667s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "structured_light" ""
[opencv 0.88.7] === Generated: quality in 2.727552625s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "superres" ""
[opencv 0.88.7] === Generated: objdetect in 3.856626959s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "surface_matching" ""
[opencv 0.88.7] === Generated: rapid in 2.499162875s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "text" ""
[opencv 0.88.7] === Generated: saliency in 2.484353459s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "tracking" ""
[opencv 0.88.7] === Generated: sfm in 2.599285875s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "video" ""
[opencv 0.88.7] === Generated: rgbd in 3.776345s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "videoio" ""
[opencv 0.88.7] === Generated: shape in 2.356453959s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "videostab" ""
[opencv 0.88.7] === Generated: stereo in 2.296726875s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "viz" ""
[opencv 0.88.7] === Generated: superres in 2.236236333s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "wechat_qrcode" ""
[opencv 0.88.7] === Generated: structured_light in 2.391243125s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "xfeatures2d" ""
[opencv 0.88.7] === Generated: surface_matching in 2.239897667s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "ximgproc" ""
[opencv 0.88.7] === Generated: text in 2.623412041s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "xobjdetect" ""
[opencv 0.88.7] === Generated: tracking in 2.208269625s
[opencv 0.88.7] === Running: "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-f1d1efeb488f4acb/build-script-build" "/opt/homebrew/opt/opencv/include/opencv4" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "xphoto" ""
[opencv 0.88.7] === Generated: stitching in 3.914734375s
[opencv 0.88.7] === Generated: videoio in 2.252528208s
[opencv 0.88.7] === Generated: video in 2.567375208s
[opencv 0.88.7] === Generated: wechat_qrcode in 2.012553083s
[opencv 0.88.7] === Generated: videostab in 2.807356542s
[opencv 0.88.7] === Generated: viz in 2.835836333s
[opencv 0.88.7] === Generated: xobjdetect in 1.944049709s
[opencv 0.88.7] === Generated: xfeatures2d in 2.559051375s
[opencv 0.88.7] === Generated: xphoto in 2.028927209s
[opencv 0.88.7] === Generated: ximgproc in 3.013699334s
[opencv 0.88.7] === Total binding generation time: 16.252171709s
[opencv 0.88.7] === Total binding collection time: 439.07925ms
[opencv 0.88.7] OPT_LEVEL = Some("0")
[opencv 0.88.7] TARGET = Some("x86_64-apple-darwin")
[opencv 0.88.7] HOST = Some("x86_64-apple-darwin")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] DEBUG = Some("true")
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64-apple-darwin
[opencv 0.88.7] CXX_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX_x86_64_apple_darwin
[opencv 0.88.7] CXX_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXX
[opencv 0.88.7] HOST_CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXX
[opencv 0.88.7] CXX = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-darwin
[opencv 0.88.7] CXXFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_darwin
[opencv 0.88.7] CXXFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXFLAGS
[opencv 0.88.7] HOST_CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXFLAGS
[opencv 0.88.7] CXXFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[opencv 0.88.7] CRATE_CC_NO_DEFAULTS = None
[opencv 0.88.7] CARGO_CFG_TARGET_FEATURE = Some("cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,ssse3")
[opencv 0.88.7] === Compiler information: Tool {
[opencv 0.88.7]     path: "c++",
[opencv 0.88.7]     cc_wrapper_path: None,
[opencv 0.88.7]     cc_wrapper_args: [],
[opencv 0.88.7]     args: [
[opencv 0.88.7]         "-O0",
[opencv 0.88.7]         "-ffunction-sections",
[opencv 0.88.7]         "-fdata-sections",
[opencv 0.88.7]         "-fPIC",
[opencv 0.88.7]         "-gdwarf-2",
[opencv 0.88.7]         "-fno-omit-frame-pointer",
[opencv 0.88.7]         "-m64",
[opencv 0.88.7]         "-arch",
[opencv 0.88.7]         "x86_64",
[opencv 0.88.7]         "-I",
[opencv 0.88.7]         "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp",
[opencv 0.88.7]         "-I",
[opencv 0.88.7]         "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out",
[opencv 0.88.7]         "-I",
[opencv 0.88.7]         ".",
[opencv 0.88.7]         "-I",
[opencv 0.88.7]         "/opt/homebrew/opt/opencv/include/opencv4",
[opencv 0.88.7]         "-Wall",
[opencv 0.88.7]         "-Wextra",
[opencv 0.88.7]         "-std=c++14",
[opencv 0.88.7]         "-Wno-deprecated-declarations",
[opencv 0.88.7]         "-Wno-deprecated-copy",
[opencv 0.88.7]         "-Wno-unused-parameter",
[opencv 0.88.7]         "-Wno-sign-compare",
[opencv 0.88.7]         "-Wno-comment",
[opencv 0.88.7]         "-Wunused-but-set-variable",
[opencv 0.88.7]         "-Wno-unused-variable",
[opencv 0.88.7]         "-Wno-ignored-qualifiers",
[opencv 0.88.7]         "-Wno-return-type-c-linkage",
[opencv 0.88.7]         "-Wno-overloaded-virtual",
[opencv 0.88.7]         "-F/opt/homebrew/opt/opencv/include/opencv4",
[opencv 0.88.7]     ],
[opencv 0.88.7]     env: [],
[opencv 0.88.7]     family: Gnu,
[opencv 0.88.7]     cuda: false,
[opencv 0.88.7]     removed_args: [],
[opencv 0.88.7] }
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_alphamat
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_aruco
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_bgsegm
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_bioinspired
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_calib3d
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_ccalib
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_core
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_dnn
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_dnn_superres
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_dpm
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_face
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_features2d
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_flann
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_freetype
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_fuzzy
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_gapi
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_hfs
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_highgui
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_img_hash
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_imgcodecs
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_imgproc
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_intensity_transform
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_line_descriptor
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_mcc
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_ml
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_objdetect
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_optflow
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_phase_unwrapping
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_photo
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_plot
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_quality
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_rapid
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_rgbd
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_saliency
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_sfm
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_shape
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_stereo
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_stitching
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_structured_light
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_superres
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_surface_matching
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_text
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_tracking
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_video
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_videoio
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_videostab
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_viz
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_wechat_qrcode
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_xfeatures2d
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_ximgproc
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_xobjdetect
[opencv 0.88.7] cargo:rustc-cfg=ocvrs_has_module_xphoto
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-aruco.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/aruco.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ccalib.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/ccalib.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-bgsegm.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/bgsegm.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dnn.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/dnn.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/2bee226f4f16f578-manual-core.o" "-c" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp/manual-core.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-bioinspired.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/bioinspired.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dnn_superres.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/dnn_superres.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-alphamat.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/alphamat.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-core.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/core.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-calib3d.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/calib3d.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dpm.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/dpm.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-face.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/face.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-features2d.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/features2d.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-flann.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/flann.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-freetype.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/freetype.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-fuzzy.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/fuzzy.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-gapi.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/gapi.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-hfs.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/hfs.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-highgui.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/highgui.cpp"
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-img_hash.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/img_hash.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-imgcodecs.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/imgcodecs.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-imgproc.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/imgproc.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-intensity_transform.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/intensity_transform.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-line_descriptor.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/line_descriptor.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-mcc.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/mcc.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ml.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/ml.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-objdetect.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/objdetect.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-optflow.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/optflow.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-phase_unwrapping.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/phase_unwrapping.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-photo.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/photo.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-plot.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/plot.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-quality.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/quality.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-rapid.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/rapid.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-rgbd.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/rgbd.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-saliency.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/saliency.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-sfm.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/sfm.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-shape.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/shape.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-stereo.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/stereo.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-stitching.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/stitching.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-structured_light.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/structured_light.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-superres.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/superres.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-surface_matching.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/surface_matching.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-text.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/text.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-tracking.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/tracking.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-video.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/video.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-videoio.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/videoio.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-videostab.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/videostab.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-viz.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/viz.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-wechat_qrcode.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/wechat_qrcode.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xfeatures2d.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/xfeatures2d.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ximgproc.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/ximgproc.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xobjdetect.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/xobjdetect.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: env -u IPHONEOS_DEPLOYMENT_TARGET "c++" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "-m64" "-arch" "x86_64" "-I" "/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src_cpp" "-I" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out" "-I" "." "-I" "/opt/homebrew/opt/opencv/include/opencv4" "-Wall" "-Wextra" "-std=c++14" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wunused-but-set-variable" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-Wno-overloaded-virtual" "-F/opt/homebrew/opt/opencv/include/opencv4" "-o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xphoto.o" "-c" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/xphoto.cpp"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] cargo:rerun-if-env-changed=AR_x86_64-apple-darwin
[opencv 0.88.7] AR_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=AR_x86_64_apple_darwin
[opencv 0.88.7] AR_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_AR
[opencv 0.88.7] HOST_AR = None
[opencv 0.88.7] cargo:rerun-if-env-changed=AR
[opencv 0.88.7] AR = None
[opencv 0.88.7] cargo:rerun-if-env-changed=ARFLAGS_x86_64-apple-darwin
[opencv 0.88.7] ARFLAGS_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=ARFLAGS_x86_64_apple_darwin
[opencv 0.88.7] ARFLAGS_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_ARFLAGS
[opencv 0.88.7] HOST_ARFLAGS = None
[opencv 0.88.7] cargo:rerun-if-env-changed=ARFLAGS
[opencv 0.88.7] ARFLAGS = None
[opencv 0.88.7] running: ZERO_AR_DATE="1" "ar" "cq" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/libocvrs.a" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-alphamat.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-aruco.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-bgsegm.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-bioinspired.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-calib3d.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ccalib.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-core.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/2bee226f4f16f578-manual-core.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dnn.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dnn_superres.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-dpm.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-face.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-features2d.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-flann.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-freetype.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-fuzzy.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-gapi.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-hfs.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-highgui.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-img_hash.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-imgcodecs.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-imgproc.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-intensity_transform.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-line_descriptor.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-mcc.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ml.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-objdetect.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-optflow.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-phase_unwrapping.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-photo.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-plot.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-quality.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-rapid.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-rgbd.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-saliency.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-sfm.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-shape.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-stereo.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-stitching.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-structured_light.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-superres.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-surface_matching.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-text.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-tracking.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-video.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-videoio.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-videostab.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-viz.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-wechat_qrcode.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xfeatures2d.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-ximgproc.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xobjdetect.o" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/e6841627739aafbe-xphoto.o"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] running: "ar" "s" "/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out/libocvrs.a"
[opencv 0.88.7] exit status: 0
[opencv 0.88.7] cargo:rustc-link-lib=static=ocvrs
[opencv 0.88.7] cargo:rustc-link-search=native=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXSTDLIB_x86_64-apple-darwin
[opencv 0.88.7] CXXSTDLIB_x86_64-apple-darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXSTDLIB_x86_64_apple_darwin
[opencv 0.88.7] CXXSTDLIB_x86_64_apple_darwin = None
[opencv 0.88.7] cargo:rerun-if-env-changed=HOST_CXXSTDLIB
[opencv 0.88.7] HOST_CXXSTDLIB = None
[opencv 0.88.7] cargo:rerun-if-env-changed=CXXSTDLIB
[opencv 0.88.7] CXXSTDLIB = None
[opencv 0.88.7] cargo:rustc-link-lib=c++
[opencv 0.88.7] === Total cpp build time: 18.737062791s
[opencv 0.88.7] cargo:rustc-link-search=/opt/homebrew/opt/opencv/lib
[opencv 0.88.7] cargo:rustc-link-search=framework=/opt/homebrew/opt/opencv/lib
[opencv 0.88.7] cargo:rustc-link-lib=opencv_gapi
[opencv 0.88.7] cargo:rustc-link-lib=opencv_stitching
[opencv 0.88.7] cargo:rustc-link-lib=opencv_alphamat
[opencv 0.88.7] cargo:rustc-link-lib=opencv_aruco
[opencv 0.88.7] cargo:rustc-link-lib=opencv_bgsegm
[opencv 0.88.7] cargo:rustc-link-lib=opencv_bioinspired
[opencv 0.88.7] cargo:rustc-link-lib=opencv_ccalib
[opencv 0.88.7] cargo:rustc-link-lib=opencv_dnn_objdetect
[opencv 0.88.7] cargo:rustc-link-lib=opencv_dnn_superres
[opencv 0.88.7] cargo:rustc-link-lib=opencv_dpm
[opencv 0.88.7] cargo:rustc-link-lib=opencv_face
[opencv 0.88.7] cargo:rustc-link-lib=opencv_freetype
[opencv 0.88.7] cargo:rustc-link-lib=opencv_fuzzy
[opencv 0.88.7] cargo:rustc-link-lib=opencv_hfs
[opencv 0.88.7] cargo:rustc-link-lib=opencv_img_hash
[opencv 0.88.7] cargo:rustc-link-lib=opencv_intensity_transform
[opencv 0.88.7] cargo:rustc-link-lib=opencv_line_descriptor
[opencv 0.88.7] cargo:rustc-link-lib=opencv_mcc
[opencv 0.88.7] cargo:rustc-link-lib=opencv_quality
[opencv 0.88.7] cargo:rustc-link-lib=opencv_rapid
[opencv 0.88.7] cargo:rustc-link-lib=opencv_reg
[opencv 0.88.7] cargo:rustc-link-lib=opencv_rgbd
[opencv 0.88.7] cargo:rustc-link-lib=opencv_saliency
[opencv 0.88.7] cargo:rustc-link-lib=opencv_sfm
[opencv 0.88.7] cargo:rustc-link-lib=opencv_stereo
[opencv 0.88.7] cargo:rustc-link-lib=opencv_structured_light
[opencv 0.88.7] cargo:rustc-link-lib=opencv_phase_unwrapping
[opencv 0.88.7] cargo:rustc-link-lib=opencv_superres
[opencv 0.88.7] cargo:rustc-link-lib=opencv_optflow
[opencv 0.88.7] cargo:rustc-link-lib=opencv_surface_matching
[opencv 0.88.7] cargo:rustc-link-lib=opencv_tracking
[opencv 0.88.7] cargo:rustc-link-lib=opencv_highgui
[opencv 0.88.7] cargo:rustc-link-lib=opencv_datasets
[opencv 0.88.7] cargo:rustc-link-lib=opencv_text
[opencv 0.88.7] cargo:rustc-link-lib=opencv_plot
[opencv 0.88.7] cargo:rustc-link-lib=opencv_videostab
[opencv 0.88.7] cargo:rustc-link-lib=opencv_videoio
[opencv 0.88.7] cargo:rustc-link-lib=opencv_viz
[opencv 0.88.7] cargo:rustc-link-lib=opencv_wechat_qrcode
[opencv 0.88.7] cargo:rustc-link-lib=opencv_xfeatures2d
[opencv 0.88.7] cargo:rustc-link-lib=opencv_shape
[opencv 0.88.7] cargo:rustc-link-lib=opencv_ml
[opencv 0.88.7] cargo:rustc-link-lib=opencv_ximgproc
[opencv 0.88.7] cargo:rustc-link-lib=opencv_video
[opencv 0.88.7] cargo:rustc-link-lib=opencv_xobjdetect
[opencv 0.88.7] cargo:rustc-link-lib=opencv_objdetect
[opencv 0.88.7] cargo:rustc-link-lib=opencv_calib3d
[opencv 0.88.7] cargo:rustc-link-lib=opencv_imgcodecs
[opencv 0.88.7] cargo:rustc-link-lib=opencv_features2d
[opencv 0.88.7] cargo:rustc-link-lib=opencv_dnn
[opencv 0.88.7] cargo:rustc-link-lib=opencv_flann
[opencv 0.88.7] cargo:rustc-link-lib=opencv_xphoto
[opencv 0.88.7] cargo:rustc-link-lib=opencv_photo
[opencv 0.88.7] cargo:rustc-link-lib=opencv_imgproc
[opencv 0.88.7] cargo:rustc-link-lib=opencv_core
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=opencv CARGO_MANIFEST_DIR=/Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7 CARGO_PKG_AUTHORS='Pro <twisted.fall@gmail.com>:Mathieu Poumeyrol <kali@zoy.org>' CARGO_PKG_DESCRIPTION='Rust bindings for OpenCV' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/twistedfall/opencv-rust' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.88.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=88 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name opencv --edition=2021 /Users/calthejuggler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/opencv-0.88.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked --cfg 'feature="alphamat"' --cfg 'feature="aruco"' --cfg 'feature="aruco_detector"' --cfg 'feature="barcode"' --cfg 'feature="bgsegm"' --cfg 'feature="bioinspired"' --cfg 'feature="calib3d"' --cfg 'feature="ccalib"' --cfg 'feature="cudaarithm"' --cfg 'feature="cudabgsegm"' --cfg 'feature="cudacodec"' --cfg 'feature="cudafeatures2d"' --cfg 'feature="cudafilters"' --cfg 'feature="cudaimgproc"' --cfg 'feature="cudaobjdetect"' --cfg 'feature="cudaoptflow"' --cfg 'feature="cudastereo"' --cfg 'feature="cudawarping"' --cfg 'feature="cvv"' --cfg 'feature="default"' --cfg 'feature="dnn"' --cfg 'feature="dnn_superres"' --cfg 'feature="dpm"' --cfg 'feature="face"' --cfg 'feature="features2d"' --cfg 'feature="flann"' --cfg 'feature="freetype"' --cfg 'feature="fuzzy"' --cfg 'feature="gapi"' --cfg 'feature="hdf"' --cfg 'feature="hfs"' --cfg 'feature="highgui"' --cfg 'feature="img_hash"' --cfg 'feature="imgcodecs"' --cfg 'feature="imgproc"' --cfg 'feature="intensity_transform"' --cfg 'feature="line_descriptor"' --cfg 'feature="mcc"' --cfg 'feature="ml"' --cfg 'feature="objdetect"' --cfg 'feature="optflow"' --cfg 'feature="ovis"' --cfg 'feature="phase_unwrapping"' --cfg 'feature="photo"' --cfg 'feature="plot"' --cfg 'feature="quality"' --cfg 'feature="rapid"' --cfg 'feature="rgbd"' --cfg 'feature="saliency"' --cfg 'feature="sfm"' --cfg 'feature="shape"' --cfg 'feature="stereo"' --cfg 'feature="stitching"' --cfg 'feature="structured_light"' --cfg 'feature="superres"' --cfg 'feature="surface_matching"' --cfg 'feature="text"' --cfg 'feature="tracking"' --cfg 'feature="video"' --cfg 'feature="videoio"' --cfg 'feature="videostab"' --cfg 'feature="viz"' --cfg 'feature="wechat_qrcode"' --cfg 'feature="xfeatures2d"' --cfg 'feature="ximgproc"' --cfg 'feature="xobjdetect"' --cfg 'feature="xphoto"' -C metadata=7c03562b73555f55 -C extra-filename=-7c03562b73555f55 --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern libc=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/liblibc-602032d812c256b1.rmeta --extern num_traits=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libnum_traits-a96e4560f8145a41.rmeta --extern once_cell=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libonce_cell-16acbf3b88676364.rmeta --cap-lints warn -C link-arg=-undefined -C link-arg=dynamic_lookup -L native=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out -L /opt/homebrew/opt/opencv/lib -L framework=/opt/homebrew/opt/opencv/lib -l static=ocvrs -l c++ -l opencv_gapi -l opencv_stitching -l opencv_alphamat -l opencv_aruco -l opencv_bgsegm -l opencv_bioinspired -l opencv_ccalib -l opencv_dnn_objdetect -l opencv_dnn_superres -l opencv_dpm -l opencv_face -l opencv_freetype -l opencv_fuzzy -l opencv_hfs -l opencv_img_hash -l opencv_intensity_transform -l opencv_line_descriptor -l opencv_mcc -l opencv_quality -l opencv_rapid -l opencv_reg -l opencv_rgbd -l opencv_saliency -l opencv_sfm -l opencv_stereo -l opencv_structured_light -l opencv_phase_unwrapping -l opencv_superres -l opencv_optflow -l opencv_surface_matching -l opencv_tracking -l opencv_highgui -l opencv_datasets -l opencv_text -l opencv_plot -l opencv_videostab -l opencv_videoio -l opencv_viz -l opencv_wechat_qrcode -l opencv_xfeatures2d -l opencv_shape -l opencv_ml -l opencv_ximgproc -l opencv_video -l opencv_xobjdetect -l opencv_objdetect -l opencv_calib3d -l opencv_imgcodecs -l opencv_features2d -l opencv_dnn -l opencv_flann -l opencv_xphoto -l opencv_photo -l opencv_imgproc -l opencv_core --cfg ocvrs_opencv_branch_4 --cfg ocvrs_has_module_alphamat --cfg ocvrs_has_module_aruco --cfg ocvrs_has_module_bgsegm --cfg ocvrs_has_module_bioinspired --cfg ocvrs_has_module_calib3d --cfg ocvrs_has_module_ccalib --cfg ocvrs_has_module_core --cfg ocvrs_has_module_dnn --cfg ocvrs_has_module_dnn_superres --cfg ocvrs_has_module_dpm --cfg ocvrs_has_module_face --cfg ocvrs_has_module_features2d --cfg ocvrs_has_module_flann --cfg ocvrs_has_module_freetype --cfg ocvrs_has_module_fuzzy --cfg ocvrs_has_module_gapi --cfg ocvrs_has_module_hfs --cfg ocvrs_has_module_highgui --cfg ocvrs_has_module_img_hash --cfg ocvrs_has_module_imgcodecs --cfg ocvrs_has_module_imgproc --cfg ocvrs_has_module_intensity_transform --cfg ocvrs_has_module_line_descriptor --cfg ocvrs_has_module_mcc --cfg ocvrs_has_module_ml --cfg ocvrs_has_module_objdetect --cfg ocvrs_has_module_optflow --cfg ocvrs_has_module_phase_unwrapping --cfg ocvrs_has_module_photo --cfg ocvrs_has_module_plot --cfg ocvrs_has_module_quality --cfg ocvrs_has_module_rapid --cfg ocvrs_has_module_rgbd --cfg ocvrs_has_module_saliency --cfg ocvrs_has_module_sfm --cfg ocvrs_has_module_shape --cfg ocvrs_has_module_stereo --cfg ocvrs_has_module_stitching --cfg ocvrs_has_module_structured_light --cfg ocvrs_has_module_superres --cfg ocvrs_has_module_surface_matching --cfg ocvrs_has_module_text --cfg ocvrs_has_module_tracking --cfg ocvrs_has_module_video --cfg ocvrs_has_module_videoio --cfg ocvrs_has_module_videostab --cfg ocvrs_has_module_viz --cfg ocvrs_has_module_wechat_qrcode --cfg ocvrs_has_module_xfeatures2d --cfg ocvrs_has_module_ximgproc --cfg ocvrs_has_module_xobjdetect --cfg ocvrs_has_module_xphoto`
   Compiling opencv-test v0.1.0 (/Users/calthejuggler/Projects/rust/opencv-test)
     Running `CARGO=/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo CARGO_BIN_NAME=opencv-test CARGO_CRATE_NAME=opencv_test CARGO_MANIFEST_DIR=/Users/calthejuggler/Projects/rust/opencv-test CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv-test CARGO_PKG_README='' CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 DYLD_FALLBACK_LIBRARY_PATH='/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' /Users/calthejuggler/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc --crate-name opencv_test --edition=2021 src/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=140 --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C split-debuginfo=unpacked -C metadata=c148db321815540b -C extra-filename=-c148db321815540b --out-dir /Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps -C incremental=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/incremental -L dependency=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps --extern anyhow=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libanyhow-3be872769cd50a6d.rlib --extern opencv=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/deps/libopencv-7c03562b73555f55.rlib -C link-arg=-undefined -C link-arg=dynamic_lookup -L native=/Users/calthejuggler/Projects/rust/opencv-test/target/debug/build/opencv-b6c17c3d6744f4ec/out -L /opt/homebrew/opt/opencv/lib -L framework=/opt/homebrew/opt/opencv/lib`
    Finished dev [unoptimized + debuginfo] target(s) in 1m 12s
twistedfall commented 5 months ago

clang.dylib is not required in runtime, only during building phase. It looks like it can't dynamically link to OpenCV itself. Usually homebrew is taking care of this, but in your case it's not happening for some reason. Try running otool -L ./target/release/opencv-test to make sure it links to OpenCV and then try setting up the DYLD_LIBRARY_PATH/DYLD_FALLBACK_LIBRARY_PATH to point to the directory where OpenCV's *.dylibs are located.