Canon .CR3 files and white balance difference in CR3 vs DNG

I tried to compile and make a version for my Mac Mini M1 as follows

brew install gtk+3 gtkmm3 gtk-mac-integration adwaita-icon-theme libsigc++ little-cms2 libiptcdata fftw lensfun wget llvm cmake expat pkgconfig shared-mime-info

curl -L https://github.com/Homebrew/homebrew-core/raw/679923b4eb48a8dc7ecc1f05d06063cd79b3fc00/Formula/libomp.rb -o libomp.rb && brew install libomp.rb

mkdir -p ~/programs
git clone GitHub - KarlMagnusLarsson/RawTherapee: A powerful cross-platform raw photo processing program ~/programs/code-rawtherapee
cd ~/programs/code-rawtherapee
git checkout dev

cd ~/programs/code-rawtherapee
rm -rf build
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=“release”
-DPROC_TARGET_NUMBER=“1”
-DPROC_LABEL=“generic processor”
-DCACHE_NAME_SUFFIX=“5-dev”
-DCMAKE_C_COMPILER=“clang”
-DCMAKE_CXX_COMPILER=“clang++”
-DWITH_LTO=“OFF”
-DLENSFUNDBDIR=“share/lensfun”
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15
-DLOCAL_PREFIX:STRING="/opt/homebrew"
-DCMAKE_OSX_ARCHITECTURES=arm64
-DCODESIGNID=“Developer ID Application: Hans Nieuwenhuis (xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx x xx xx)”

make -j$(sysctl -n hw.ncpu) install
sudo make macosx_bundle

At the first i did not use the -DCODESIGNID and RT crashed with a code signing error.
I created a Self-signed root certificate for codesigning, but i am not sure what the syntax of the -DCODESIGNID is
I inserted the Key ID from the certificate.
But Rt still crashes at startup.
See attached crashdump file.

CrashDump.txt (19.6 KB)