I am attempting to update an ANTLR4 Cpp project from 4.9.3 to 4.10 and/or 4.10.1. My Xcode project has the
runtime/Cpp/runtime/antlrcpp.xcodeproj as a dependency and links against antlr4_static. All targets in this project are failing to build for me (antlr4_static, antlr4, and antlr4_ios) on 4.10 and 4.10.1. Xcode produces the following error:
error: Build input file cannot be found: '(My project path)/runtime/Cpp/runtime/src/atn/TokensStartState.cpp' (in target 'antlr4_static' from project 'antlrcpp')
When I look through the project, I see several files show up red (ie, they're missing from the filesystem). This xcodeproj worked on the 4.9.3 release, maybe the underlying code was refactored and the Xcode project was not updated? Or am I missing something else here?
Thanks for any help.
-Brad