GDB kind of doesn’t work on macOS Sierra

This is how I easily fixed the issue. [Update: based on feedback received and yet to be verified, it seems that this solution works with macOS Sierra 10.12 but not with macOS Sierra 10.12.2] See video instructions here Quit gdb Using your text editor e.g. Sublime Text, save a file called .gdbinit in your user … Read more

.ssh/config: “Bad configuration option: UseKeychain” on Mac OS Sierra 10.12.6

Try to specify another option, namely IgnoreUnknown like below: Host * IgnoreUnknown UseKeychain UseKeychain yes You can find more info about this here. If you already have an IgnoreUnknown value, use comma separated values Host * IgnoreUnknown AddKeysToAgent,UseKeychain AddKeysToAgent yes UseKeychain yes If you have multiple Host configs that use the UseKeychain option, make sure … Read more

security / codesign in Sierra: Keychain ignores access control settings and UI-prompts for permission

The command you need to use is as follows: security set-key-partition-list -S apple-tool:,apple: -s -k keychainPass keychainName Please have in mind that this command line tool works like the list-keychains’s way of modification. If you execute set-key-partition-list with a single value it will overwrite all partitionIDs in the certificates. It won’t validate the values passed. … Read more

Code Sign Error in macOS Monterey, Xcode – resource fork, Finder information, or similar detritus not allowed

Solution 1: Apple Developer Website Answers above problem Here. Execute below command in terminal : First goto projects root folder xattr -cr <path_to_project_dir> Clean Xcode and Re Build. Cheers Solution 2: Just go to project root directory and run this command xattr -cr . xattr -cr . Clean Xcode and Re Build. Done. Solution 3: … Read more