-
Notifications
You must be signed in to change notification settings - Fork 204
Fix issue with IRGen #134
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: master
Are you sure you want to change the base?
Fix issue with IRGen #134
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 self
The 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.yaml
expected by Xcode.