Hi,
After we made changes for apple notarization, I cannot seem to re-place a binary for debugging.
[This are all terminal binaries, not apps]
executable A is linked with library B, both are codesingned with
codesign -f -o runtime -s "identity" <binary>
and, are runnign fine.
Now, for debugging if I make a change in B and replace it, now A is killed right away with error
Exception Type: EXC_BAD_ACCESS (Code Signature Invalid)
Exception Codes: 0x0000000000000032, 0x0000000103082000
Exception Note: EXC_CORPSE_NOTIFY
Termination Reason: Namespace CODESIGNING, Code 0x2
Application Specific Information:
dyld: in dlopen()
<path to library B>
even if I add entitlement get-task-allow to executable A, it's still same.
What can I do, what am I missing?