Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove searching of Xcode private paths in build
Summary: This was needed a while back when we weak-linked particular frameworks. Since then we've removed the need to do this: 1) There's no weak-linking of any Xcode frameworks. All Xcode frameworks are linked at runtime, as such they don't need to be referenced in the build. 2) Headers for any of Xcode's private libraries are resident in `PrivateHeaders`, part of the project. This also breaks test targets in Xcode 13.2 since the search path for XCTest.framework is overridden. The Framework doesn't contain headers anymore: ``` note: did not find header 'XCTest.h' in framework 'XCTest' (loaded from '/Applications/xcode_13_2_1.app/Contents/SharedFrameworks' `` Reviewed By: jbardini Differential Revision: D33581989 fbshipit-source-id: efe2475b465cb9a4112ca200d5564efbd13ab891
- Loading branch information