Published
- 1 min read
Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation
The solution for this is noted below
Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation
Solution
Fixed this by running.
xcrun -sdk macosx --show-sdk-path
1. This outputs your current skd path.
2. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk
3. Add this to your .zshrc file.
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk
4. Source it
source ~/.zshrc
5. Now run
xcrun -sdk macosx --show-sdk-version
Try other methods by searching on the site. That is if this doesn’t work