Conversation
During debugging session, with the use of pods installed via Cocoapods-binary, the console in Xcode displays error messages while executing following expression: `po self` The error looks the following one: ``` Printing description of self: expression produced error: error: virtual filesystem overlay file '/path/to/project/Pods/build/Pods.build/Release-iphoneos/Charts.build/all-product-headers.yaml' not found error: couldn't IRGen expression. Please check the above error messages for possible root causes. ``` The issue is not related to Charts pod, but to every pod used. To fix the issue, I just removed the line that delete the build folder generated during the precompiling of pods. THis folder contains for each pod, the `all-product-headers.yaml` expected by Xcode.
|
any update for this issue? |
Hello @jamesdouble, I don't know how to add a reviewer to this pull request and how to restart the continuous integration job. |
|
@brendan-guegan-orange , |
|
@jamesdouble |
|
Is there any fork that continues maintaining? |
|
I thought this fixing does not work well. |
|
Related article: |
|
I think |
Where should I put this setting? |
|
@jamesdouble |
This commit is a copy of the one made in this pull request : leavez#73 (reference).
During debugging session, with the use of pods installed via Cocoapods-binary, the console in Xcode displays error messages while executing following expression:
po selfThe error looks the following one:
The issue is not related to Charts pod, but to every pod used.
To fix the issue, I just removed the line that delete the build folder generated during the precompiling of pods. This folder contains for each pod, the
all-product-headers.yamlexpected by Xcode.