-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
libffi - fix to support updated automake recipe #14460
libffi - fix to support updated automake recipe #14460
Conversation
2791ce0
to
10c2fe9
Compare
ar_wrapper = unix_path(self, os.path.join(self.dependencies.direct_build['automake'].cpp_info.resdirs[0], f"automake-{automake_version}", "ar-lib")) | ||
env.define("CC", f"{compile_wrapper}") | ||
env.define("CXX", f"{compile_wrapper}") | ||
env.define("LD", "link -nologo") | ||
env.define("AR", f"{ar_wrapper} \"lib -nologo\"") |
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.
automake doesn't yet define this conf, and the fix here is not correct. Not sure it's worth struggling c3i for something we know fails for the moment.
Conan v1 pipelineFailure in build 2 (
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability. |
Ok, I'll close this and can start again when automake is done... |
Waiting on #12898
Pushing this up now to get the ball rolling.
Note that the original commented out line of code was:
env.define("AR", f"{unix_path(self, self.conf.get('tools.automake:ar-lib'))}")
but I needed to do this for it to work:
env.define("AR", f"{unix_path(self, self.conf.get('user.automake:ar-lib'))}")
Perhaps there are still things to change in automake / conan before this is merged?