-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Mold] Use the official libexecdir now that the CCI hooks allow it #15068
[Mold] Use the official libexecdir now that the CCI hooks allow it #15068
Conversation
@@ -64,6 +61,7 @@ def generate(self): | |||
tc.variables["MOLD_USE_MIMALLOC"] = self.options.with_mimalloc | |||
tc.variables["MOLD_USE_SYSTEM_MIMALLOC"] = True | |||
tc.variables["MOLD_USE_SYSTEM_TBB"] = True | |||
tc.variables["CMAKE_INSTALL_LIBEXECDIR"] = "libexec" |
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.
Otherwise this defaults to bin
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.
I wonder if the cmake layout of helper are overriding 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.
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.
I asked the Conan team and @jcar87 said this should not be any reason of concern, so we are good :)
BTW this problem with the test package and the generators still persist for me. Can one of the experts take a look? 🙏 In that comment I mention |
This comment has been minimized.
This comment has been minimized.
Conan v1 pipelineAll green in build 3 (
Conan v2 pipeline (informative, not required for merge)Failure in build 3 (
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. |
Well, I have no idea what's going on. It was complaining about |
The v2 pipeline is running a super duper old version that doesn't work so there's no packages. Just ignore that for now |
Thanks @prince-chrismc . I need to learn to read. It clearly says |
I am still learning two profiles myself but AFAIK, "only host" means everything goes into the same scope... but adding the build profile we seperate things into two scopes
I suspect the default scope for the test would be runtime |
…hooks allow it * Use the official libexecdir now that the CCI hooks allow it * Add version 1.8.0 * Bump zlib to 1.2.13
Follow up to #13666
mold
wants to install a symlink inpackagefolder/libexec
, but this folder is forbidden by the CCI hooks, particularly byKB-H013
. The PR linked above patched the mold sources to make this symlink get installed somewhere else, which is not ideal since this path is explicitly mentioned on the docs.@prince-chrismc suggested patching the hooks instead so this rule doesn't get enforced on
mold
. Now that conan-io/hooks#464 has been merged, I'm removing the patch on the mold recipe and making sure the symlink gets installed on the proper directory.Thanks @prince-chrismc once again for the suggestion.