-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't check build for circular dependencies when cross compiling #4248
Conversation
nvm, this doesn't work. |
It does work. |
I didn't find any tests where |
When cross compiling, build dependencies are coming from already built packages and cannot be subpackages from the same recipe.
@chenghlee and @jezdez this work is part of Isuru's Small Grant Development proposal to NumFOCUS. Do you mind taking a look at it? |
I added a test. I couldn't find any existing test that checks for failure with circular dependencies, so not sure if this is what you are looking for. |
Ping on this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code changes LGTM (+verified that the added test_circular_deps_cross
fails without the changes), thanks!
Could you add a news entry?
Thanks again! |
When cross compiling, build dependencies are coming from already
built packages and cannot be subpackages from the same recipe.
This is similar to #4011