In a mostly fresh objc project (no settings tweaked, only added a Person
class) I get these strange errors at the very top of each .m
file:
No such file or directory: '/Users/tanner/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation'
Stat cache file '/Users/tanner/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.2-22C146-ba1d5608dbd73fcc092a45042755c403.sdkstatcache' not found
It looks like this:
These aren't necessarily getting in the way of me doing any work, but they're annoying. Here's my generated buildServer.json
if that helps:
{
"name": "xcode build server",
"version": "0.2",
"bspVersion": "2.0",
"languages": [
"c",
"cpp",
"objective-c",
"objective-cpp",
"swift"
],
"argv": [
"/opt/homebrew/bin/xcode-build-server"
],
"workspace": "/Users/tanner/Desktop/Objc-LSP-Testing/Objc-LSP-Testing.xcodeproj/project.xcworkspace",
"build_root": "/Users/tanner/Library/Developer/Xcode/DerivedData/Objc-LSP-Testing-ccgdqdmwqixwuuagkwoccjnfdkht",
"scheme": "Objc-LSP-Testing",
"kind": "xcode"
}
What can I do to get rid of these errors?