Skip to content
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

Explain search for sub-toolchains in robot-paths #258

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/using-easybuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,15 @@ For example, when looking for an easyconfig for `OpenMPI` version `4.1.4` and ve
* `o/OpenMPI/OpenMPI-4.1.4-GCC-11.3.0-test.eb`
* `OpenMPI-4.1.4-GCC-11.3.0-test.eb`

Copy link

@JDiprose JDiprose Jul 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that it is not an indefinite-depth search, so if you have cloned the easybuilders/easybuild-easyconfigs git repo then you need 'easybuild-easyconfigs/easybuild/easyconfigs' on your robot-path.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just added c7567cd
Is that comprehensible enough?

If no match is found sub-toolchains are also considered,
see [the toolchain diagram][common-toolchains#toolchains_diagram] for an overview of the toolchain hierarchy.
In this case the following filepaths (also relative to each entry in the robot search path) are considered if none of the above was found:

* `OpenMPI/4.1.4-GCCcore-11.3.0-test.eb`
* `OpenMPI/OpenMPI-4.1.4-GCCcore-11.3.0-test.eb`
* `o/OpenMPI/OpenMPI-4.1.4-GCCcore-11.3.0-test.eb`
* `OpenMPI-4.1.4-GCCcore-11.3.0-test.eb`

!!! note

Sometimes easyconfig files are needed even when the modules for the dependencies are already available,
Expand Down