'dyld[19610]: Symbol not found: _$s10Foundation10URLRequestV10httpMethodSSSgvs

In our application, we have over 189 pods based on the Podfile.lock with the release of Xcode13.3 we are getting linker error: dyld[19610]: Symbol not found.

The same exact project used to work in the previous Xcode release 13.2.1.

When working with Apple DTS we came to learn that the issue is related to the sheer volume of LC_RPATH results. Overrunning the 32 KB buffer size that dyld allocates to hold all of these references and their file paths. We believe the overrunning buffer size is to the sheer volume of dependencies in our project.

Any suggestion or workaround to resolve this issue?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source