Post

Replies

Boosts

Views

Activity

Reply to Command line tools not working after notarization
codesign -fs FS --timestamp --force --deep --options runtime --entitlements ./entitlements.plist TOOL_NAME TOOL_NAME: internal error in Code Signing subsystem I got this and this. codesign -dvvv .TOOL_NAME TOOL_NAME:code object is not signed at all Also, I have tried codesign -fs FS --timestamp --force --deep --options runtime TOOL_NAME codesign -fs FS --timestamp --force --deep TOOL_NAME codesign -fs FS --timestamp --force TOOL_NAME They can not work thanks
Jun ’22
Reply to Command line tools not working after notarization
Hey @ChuckMN, I will show you step by step.It may be helpful for you. coding and test my command-line tool.; as you know, we have to sign and notarize it before release; then its all right for run, test, sign, and notatize . It`s all right, then next. for release , I add static lib to my CMakeLists.txt as follow : target_link_libraries(TOOL_NAME -static-libgcc -static-libstdc++ ) run and test ok 6.sign error! codesign -fs FS --timestamp --force --deep --options runtime --entitlements ENTITLMENT TOOL_NAME TOOL_NAME: internal error in Code Signing subsystem so ,how to fix?
Jun ’22