From 3632a6b9092c0e970175de7942fbedf686652a44 Mon Sep 17 00:00:00 2001 From: psakiev Date: Sat, 15 Nov 2025 22:53:36 -0700 Subject: [PATCH 01/16] Dev workflow: no longer need to reconcretize Signed-off-by: psakiev --- tutorial_developer_workflows.rst | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 817da7e2f..8721c770c 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -138,28 +138,35 @@ Now we are ready to begin work on the actual application. Development iteration cycles ----------------------------- -Let's assume that scr has a bug, and we'd like to patch scr to find out what the problem is. -First, we tell Spack that we'd like to check out the version of scr that we want to work on. +Let's assume that ``scr`` has a bug, and we'd like to patch ``scr`` to find out what the problem is. +First, we tell Spack that we'd like to check out the version of ``scr`` that we want to work on. In this case, it will be the 3.1.0 release that we want to write a patch for: .. literalinclude:: outputs/dev/develop-1.out :language: spec -The ``spack develop`` command marks the package as being a "development" package in the ``spack.yaml``. -This adds a special ``dev_path=`` attribute to the spec for the package, so Spack remembers where the source code for this package is located. -The develop command also downloads/checks out the source code for the package. -By default, the source code is downloaded into a subdirectory of the environment. -You can change the location of this source directory by modifying the ``path:`` attribute of the develop configuration in the environment. +The ``spack develop`` command marks the package as being a "development" package based on the supplied ``develop spec``. +Develop specs are listed in their own ``develop`` section inside the ``spack.yaml``. +The mechanics of how this section is used to enforce develpoment are as follows: + +1. Specs in the environment that ``satisfy`` the develop specs are selected for development. +2. Any specs selected in step 1 receive a ``dev_path=`` variant. This variant tells Spack where to find the source code for the spec. +3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. + +If the environment is already concretized ``spack develop`` performs step 1 and 2 insitu and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. +If ``--no-modify-concrete-specs`` is passed, the environment is not yet concretized, or needs to be futher changed to satisfy the develop specs (i.e. change version of the package) then selection of develop specs and assignment of ``dev_path`` are handled by the concretizer. + +So how does Spack determine the value of the ``dev_path`` variant? +By default, the source code is downloaded into a subdirectory of the environment using Spack's staging functionality. +You can change the location of this source directory by modifying the ``path:`` attribute of the develop configuration in the environment or by passing the ``--path`` options when calling ``spack develop``. There are a few gotchas with the ``spack develop`` command -* You often specify the package version manually when specifying a package as a dev package. - Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. - If a version is not supplied, then Spack will take the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. +* Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. + If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. * You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. This is because develop specs are not concretization constraints but rather criteria for adding the ``dev_path=`` variant to existing spec. -* You'll need to re-concretize the environment so that the version number and the ``dev_path=`` attributes are properly added to the cached spec in ``spack.lock``. .. literalinclude:: outputs/dev/develop-conc.out :language: console From 3cdd0d30c37479ae7fc51da6146b9c0ff438caa4 Mon Sep 17 00:00:00 2001 From: psakiev Date: Sat, 15 Nov 2025 23:19:22 -0700 Subject: [PATCH 02/16] Rework flow for more features Signed-off-by: psakiev --- tutorial_developer_workflows.rst | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 8721c770c..c99590d05 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -160,13 +160,6 @@ So how does Spack determine the value of the ``dev_path`` variant? By default, the source code is downloaded into a subdirectory of the environment using Spack's staging functionality. You can change the location of this source directory by modifying the ``path:`` attribute of the develop configuration in the environment or by passing the ``--path`` options when calling ``spack develop``. -There are a few gotchas with the ``spack develop`` command - -* Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. - If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. -* You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. - ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. - This is because develop specs are not concretization constraints but rather criteria for adding the ``dev_path=`` variant to existing spec. .. literalinclude:: outputs/dev/develop-conc.out :language: console @@ -218,6 +211,25 @@ If we were co-developing ``macsio``, we could run .. literalinclude:: outputs/dev/develop-5.out :language: console +Note that we intentionally gave a different version and in the examples above ``macsio`` never received the ``dev_path`` variant. +This example is to show a few gotchas with the ``spack develop`` command + +* You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. + ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. + This is because develop specs are not concretization constraints but rather criteria for adding the ``dev_path=`` variant to existing spec. +* Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. + If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. + +If we really wanted to change to developing ``macsio@develop`` we need to change the root spec in the environment and then reconcretize. + +In our case the ``1.1`` version is sufficient and we will use this as an opportunity to introduce another ``spack develop`` feature: the ``--recursive`` option. +``spack develop --recursive`` can only be used with a concrete environment. +When called Spack traces the graph from the supplied develop spec to every root in the graph that transitivley depends on the develop package. +This is a nice way to ensure that all specs are skipping restages, and performing incremental builds if their build-system allows for it. + +.. literalinclude:: outputs/dev/develop-6.out + :language: console + Using development workflows also lets us ship our whole development process to another developer on the team. They can simply take our spack.yaml, create a new environment, and use this to replicate our build process. For example, we'll make another development environment here. From 56a2cfab4ad452bc16ce4593b96b13f12e3a7a6c Mon Sep 17 00:00:00 2001 From: psakiev Date: Sun, 16 Nov 2025 15:06:18 -0700 Subject: [PATCH 03/16] WIP: restructuring Signed-off-by: psakiev --- outputs/dev.sh | 15 +++++++++--- tutorial_developer_workflows.rst | 42 ++++++++++++++++++++++---------- 2 files changed, 41 insertions(+), 16 deletions(-) diff --git a/outputs/dev.sh b/outputs/dev.sh index 8a9a7775e..b512d6d2b 100755 --- a/outputs/dev.sh +++ b/outputs/dev.sh @@ -21,9 +21,11 @@ example dev/setup-scr "# for now, disable fortran support in all packages" example dev/setup-scr 'spack config add "packages:all:variants: ~fortran"' example dev/setup-scr "spack add macsio+scr" example dev/setup-scr "spack install" +example dev/setup-scr "spack find -cv scr" example dev/develop-1 "spack develop scr" example dev/develop-1 "spack config blame develop" +example dev/develop-1 "spack find -cv scr" example dev/develop-2 "spack install" @@ -37,9 +39,16 @@ fake_example dev/develop-4 '$EDITOR scr/src/scr_copy.c' "/bin/true" sed -i~ s'|\(static char hostname\[256\] = "UNKNOWN_HOST"\)|\1;|' scr/src/scr_copy.c | head -n 70 example dev/develop-4 "spack install" -example dev/develop-5 "# This time let's leave off the version" -example dev/develop-5 "spack develop macsio" -example dev/develop-5 "spack concretize -f" +example dev/develop-5 "spack develop --recursive scr" +example dev/develop-5 "spack find -cv macsio" + +example dev/develop-6 "# This time let's add the version" +example dev/develop-6 "spack change macsio@develop" +example dev/develop-6 "spack concretize -f" +example dev/develop-6 "spack develop macsio@develop" +example dev/develop-6 "spack find -cv macsio" +example dev/develop-6 "spack concretize -f" +example dev/develop-6 "spack find -cv macsio" example dev/otherdevel "cd ~" cd ~ || exit diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index c99590d05..9c4c39bc7 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -139,7 +139,7 @@ Development iteration cycles ----------------------------- Let's assume that ``scr`` has a bug, and we'd like to patch ``scr`` to find out what the problem is. -First, we tell Spack that we'd like to check out the version of ``scr`` that we want to work on. +First, we tell Spack that we'd like to check out the version of ``scr`` in our environment. In this case, it will be the 3.1.0 release that we want to write a patch for: .. literalinclude:: outputs/dev/develop-1.out @@ -188,7 +188,7 @@ If the file times are newer, it will rebuild ``scr`` and any other package that :language: console Here, the build failed as expected. -We can look at the output for the build in ``scr/spack-build-out.txt`` to find out why, or we can launch a shell directly with the appropriate environment variables to figure out what went wrong by using ``spack build-env scr@2.0 -- bash``. +We can look at the output for the build in ``scr/spack-build-out.txt`` to find out why, or we can launch a shell directly with the appropriate environment variables to figure out what went wrong by using ``spack build-env scr -- bash``. If that's too much to remember, then sourcing ``scr/spack-build-env.txt`` will also set all the appropriate environment variables so we can diagnose the build ourselves. Now let's fix it and rebuild directly. @@ -205,14 +205,33 @@ If your build system can take advantage of the previously compiled object files - If your package uses CMake with the typical ``cmake`` / ``build`` / ``install`` build stages, you'll get iterative builds for free with Spack because CMake doesn’t modify the filetime on the ``CMakeCache.txt`` file if your cmake flags haven't changed. - If your package uses autoconf, then rerunning the typical ``autoreconf`` stage typically modifies the filetime of ``config.h``, which can trigger a cascade of rebuilding. -Multiple packages can also be marked as develop. -If we were co-developing ``macsio``, we could run +Multi-package development +------------------------- + +You may have noticed that ``macsio`` is restaged and fully rebuilt each time we call ``spack install``. +This is an unnecessary expense for cross package development. +Luckily, Spack has tools to reduce this expense. +We will use this as an opportunity to introduce another ``spack develop`` feature: the ``--recursive`` option. .. literalinclude:: outputs/dev/develop-5.out :language: console -Note that we intentionally gave a different version and in the examples above ``macsio`` never received the ``dev_path`` variant. -This example is to show a few gotchas with the ``spack develop`` command +``spack develop --recursive`` can only be used with a concrete environment. +When called Spack traces the graph from the supplied develop spec to every root in the graph that transitivley depends on the develop package. +Using ``--recursive`` can be very powerful wehn developing applications deep in a graph. +In this case our development point is very close to the root spec so we could have called ``spack develop macsio`` and gotten the same result. + +Pre-configuring development environments +---------------------------------------- + +So far all of our calls to ``spack develop`` have been on a concretized environment, and we have allowed spack to automatically update the build specs for us. +If we don't want Spack to update the concrete environment's specs we can pass the ``---no-modify-concrete-spec``. +This will require you to force concretize an environment to have the develop specs take affect. + +.. literalinclude:: outputs/dev/develop-6.out + :language: console + +This example is to show a few gotchas with the ``spack develop`` command * You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. @@ -222,13 +241,8 @@ This example is to show a few gotchas with the ``spack develop`` command If we really wanted to change to developing ``macsio@develop`` we need to change the root spec in the environment and then reconcretize. -In our case the ``1.1`` version is sufficient and we will use this as an opportunity to introduce another ``spack develop`` feature: the ``--recursive`` option. -``spack develop --recursive`` can only be used with a concrete environment. -When called Spack traces the graph from the supplied develop spec to every root in the graph that transitivley depends on the develop package. -This is a nice way to ensure that all specs are skipping restages, and performing incremental builds if their build-system allows for it. - -.. literalinclude:: outputs/dev/develop-6.out - :language: console +Sharing development environments +-------------------------------- Using development workflows also lets us ship our whole development process to another developer on the team. They can simply take our spack.yaml, create a new environment, and use this to replicate our build process. @@ -244,6 +258,7 @@ When we're done developing, we simply tell Spack that it no longer needs to keep .. literalinclude:: outputs/dev/wrapup.out :language: console +---------------- Workflow Summary ---------------- @@ -251,6 +266,7 @@ Use the ``spack develop`` command with an environment to make a reproducible bui Spack will set up all the dependencies for you and link all your packages together. Within a development environment, ``spack install`` works similarly to ``make`` in that it will check file times to rebuild the minimum number of Spack packages necessary to reflect the changes to your build. +------------------------- Optional: Tips and Tricks ------------------------- From f908d3f711e109e502cd314c06ec0495868dd168 Mon Sep 17 00:00:00 2001 From: psakiev Date: Sun, 16 Nov 2025 16:40:33 -0700 Subject: [PATCH 04/16] Add discussion point for gotchas Signed-off-by: psakiev --- outputs/dev.sh | 10 +++------- tutorial_developer_workflows.rst | 29 ++++++++++++++++++++--------- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/outputs/dev.sh b/outputs/dev.sh index b512d6d2b..65e21e2fc 100755 --- a/outputs/dev.sh +++ b/outputs/dev.sh @@ -42,13 +42,9 @@ example dev/develop-4 "spack install" example dev/develop-5 "spack develop --recursive scr" example dev/develop-5 "spack find -cv macsio" -example dev/develop-6 "# This time let's add the version" -example dev/develop-6 "spack change macsio@develop" -example dev/develop-6 "spack concretize -f" -example dev/develop-6 "spack develop macsio@develop" -example dev/develop-6 "spack find -cv macsio" -example dev/develop-6 "spack concretize -f" -example dev/develop-6 "spack find -cv macsio" +example dev/develop-6 "spack develop nekbone" +example dev/develop-6 "# Not the verison we wanted. This time lets add a version" +example dev/develop-6 "spack develop --force nekbone@17.0"` example dev/otherdevel "cd ~" cd ~ || exit diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 9c4c39bc7..8951ff47f 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -150,8 +150,10 @@ Develop specs are listed in their own ``develop`` section inside the ``spack.yam The mechanics of how this section is used to enforce develpoment are as follows: 1. Specs in the environment that ``satisfy`` the develop specs are selected for development. -2. Any specs selected in step 1 receive a ``dev_path=`` variant. This variant tells Spack where to find the source code for the spec. -3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. +2. Any specs selected in step 1 receive a ``dev_path=`` variant. + This variant tells Spack where to find the source code for the spec. +3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. + Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. If the environment is already concretized ``spack develop`` performs step 1 and 2 insitu and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. If ``--no-modify-concrete-specs`` is passed, the environment is not yet concretized, or needs to be futher changed to satisfy the develop specs (i.e. change version of the package) then selection of develop specs and assignment of ``dev_path`` are handled by the concretizer. @@ -217,35 +219,44 @@ We will use this as an opportunity to introduce another ``spack develop`` featur :language: console ``spack develop --recursive`` can only be used with a concrete environment. -When called Spack traces the graph from the supplied develop spec to every root in the graph that transitivley depends on the develop package. -Using ``--recursive`` can be very powerful wehn developing applications deep in a graph. +When called Spack traces the graph from the supplied develop spec to every root in the graph that transitively depends on the develop package. +Using ``--recursive`` can be very powerful when developing applications deep in a graph. In this case our development point is very close to the root spec so we could have called ``spack develop macsio`` and gotten the same result. Pre-configuring development environments ---------------------------------------- -So far all of our calls to ``spack develop`` have been on a concretized environment, and we have allowed spack to automatically update the build specs for us. +So far all of our calls to ``spack develop`` have been on a concretized environment, and we have allowed Spack to automatically update the build specs for us. If we don't want Spack to update the concrete environment's specs we can pass the ``---no-modify-concrete-spec``. -This will require you to force concretize an environment to have the develop specs take affect. +Using ``---no-modify-concrete-spec`` will require you to force concretize an environment to have the develop specs take affect. + +Examples of where we might want to use this feature are: +- The package we wish to develop is repeated in our environment and we need to be more selective. +- We want to mark a develop spec that doesn't exist yet in the environment. + +We will show an example of the latter, and how to update the local source if you decide to change the version. +Let's say we plan to extend our environment to develop the ``nekbone`` package. .. literalinclude:: outputs/dev/develop-6.out :language: console -This example is to show a few gotchas with the ``spack develop`` command +Admittedly, this example is a bit contrived and is primarily to show a few gotchas with the ``spack develop`` command * You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. This is because develop specs are not concretization constraints but rather criteria for adding the ``dev_path=`` variant to existing spec. * Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. +* The source code located at the spec's ``dev_path`` is the users responsibility to manage. + Spack does provide an initial clone of the source code, but it makes no guarantees or additional verification of the source beyond that. + Users can manage the code locally via a version control system like ``git``, or can trigger a re-stage by calling ``spack develop --force``. -If we really wanted to change to developing ``macsio@develop`` we need to change the root spec in the environment and then reconcretize. Sharing development environments -------------------------------- Using development workflows also lets us ship our whole development process to another developer on the team. -They can simply take our spack.yaml, create a new environment, and use this to replicate our build process. +They can simply take our ``spack.yaml``, create a new environment, and use this to replicate our build process. For example, we'll make another development environment here. .. literalinclude:: outputs/dev/otherdevel.out From f6933d8380b18919c1e22044f8550dbb53b94053 Mon Sep 17 00:00:00 2001 From: Phil Sakievich Date: Sun, 16 Nov 2025 20:13:20 -0700 Subject: [PATCH 05/16] Update tutorial_developer_workflows.rst Co-authored-by: Greg Becker --- tutorial_developer_workflows.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 8951ff47f..771e86d47 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -153,7 +153,7 @@ The mechanics of how this section is used to enforce develpoment are as follows: 2. Any specs selected in step 1 receive a ``dev_path=`` variant. This variant tells Spack where to find the source code for the spec. 3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. - Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. +4. Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. If the environment is already concretized ``spack develop`` performs step 1 and 2 insitu and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. If ``--no-modify-concrete-specs`` is passed, the environment is not yet concretized, or needs to be futher changed to satisfy the develop specs (i.e. change version of the package) then selection of develop specs and assignment of ``dev_path`` are handled by the concretizer. From b273492fccf3e19b4e577835da6e12483293b3c2 Mon Sep 17 00:00:00 2001 From: Phil Sakievich Date: Sun, 16 Nov 2025 20:13:39 -0700 Subject: [PATCH 06/16] Update tutorial_developer_workflows.rst Co-authored-by: Greg Becker --- tutorial_developer_workflows.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 771e86d47..c4787b8b9 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -155,7 +155,7 @@ The mechanics of how this section is used to enforce develpoment are as follows: 3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. 4. Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. -If the environment is already concretized ``spack develop`` performs step 1 and 2 insitu and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. +If the environment is already concretized ``spack develop`` performs step 1 and 2 in situ and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. If ``--no-modify-concrete-specs`` is passed, the environment is not yet concretized, or needs to be futher changed to satisfy the develop specs (i.e. change version of the package) then selection of develop specs and assignment of ``dev_path`` are handled by the concretizer. So how does Spack determine the value of the ``dev_path`` variant? From 1007689caaa2f0f9f24967ffb4c06bd3a499e97e Mon Sep 17 00:00:00 2001 From: Phil Sakievich Date: Sun, 16 Nov 2025 20:19:13 -0700 Subject: [PATCH 07/16] Update tutorial_developer_workflows.rst Co-authored-by: Greg Becker --- tutorial_developer_workflows.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index c4787b8b9..b58851ee1 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -240,13 +240,12 @@ Let's say we plan to extend our environment to develop the ``nekbone`` package. .. literalinclude:: outputs/dev/develop-6.out :language: console -Admittedly, this example is a bit contrived and is primarily to show a few gotchas with the ``spack develop`` command +The ``spack develop`` command only has any effect if the developed package appears in the environment, as a root or dependency. +Some additional concerns to use the ``spack develop`` command effectively: -* You should ensure a spec for the package you are developing appears in the DAG of at least one of the roots of the environment with the same version that you are developing. - ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. - This is because develop specs are not concretization constraints but rather criteria for adding the ``dev_path=`` variant to existing spec. -* Spack needs to know the version of the dev package so it can supply the correct flags for the package's build system. - If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. +* ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. +* If the spec is not already concrete in the environment, you need to provide Spack a spec version so it can supply the correct flags for the package's build system. +* If a version is not supplied or detectable in the environment, then Spack falls back to the maximum version defined in the package where `infinity versions `_ like ``develop`` and ``main`` have a higher value than the numeric versions. * The source code located at the spec's ``dev_path`` is the users responsibility to manage. Spack does provide an initial clone of the source code, but it makes no guarantees or additional verification of the source beyond that. Users can manage the code locally via a version control system like ``git``, or can trigger a re-stage by calling ``spack develop --force``. From 2c2068388467602a5137f99a097956891d29eeed Mon Sep 17 00:00:00 2001 From: psakiev Date: Sun, 16 Nov 2025 21:20:41 -0700 Subject: [PATCH 08/16] Updates and style Signed-off-by: psakiev --- tutorial_developer_workflows.rst | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index b58851ee1..b786a7287 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -152,11 +152,12 @@ The mechanics of how this section is used to enforce develpoment are as follows: 1. Specs in the environment that ``satisfy`` the develop specs are selected for development. 2. Any specs selected in step 1 receive a ``dev_path=`` variant. This variant tells Spack where to find the source code for the spec. + Adding the variant modifies the DAG hash of the spec and all of its downstream dependencies. 3. Calls to ``spack install`` will now use the source code at ``dev_path`` when building that package. 4. Spack doesn't clean this build up after a successful build so subsequent calls to ``spack install`` trigger incremental builds. -If the environment is already concretized ``spack develop`` performs step 1 and 2 in situ and updates the ``spack.lock`` file unless the ``--no-modify-concrete-specs`` option is passed. -If ``--no-modify-concrete-specs`` is passed, the environment is not yet concretized, or needs to be futher changed to satisfy the develop specs (i.e. change version of the package) then selection of develop specs and assignment of ``dev_path`` are handled by the concretizer. +If the environment is already concretized ``spack develop`` performs step 1 and 2 in situ and updates the ``spack.lock`` file by default. +If the environment is not yet concretized the selection of develop specs and assignment of ``dev_path`` are handled during concretization. So how does Spack determine the value of the ``dev_path`` variant? By default, the source code is downloaded into a subdirectory of the environment using Spack's staging functionality. @@ -211,9 +212,10 @@ Multi-package development ------------------------- You may have noticed that ``macsio`` is restaged and fully rebuilt each time we call ``spack install``. -This is an unnecessary expense for cross package development. -Luckily, Spack has tools to reduce this expense. -We will use this as an opportunity to introduce another ``spack develop`` feature: the ``--recursive`` option. +Usually developers do not want to fully rebuild the canonical source every time; either for performance or because they are co-developing the two packages. +Spack does not limit how many packages can be developed so ``spack develop`` can be applied to any spec in our environment including ``macsio``. +The ``--recursive`` option provides a convenient way to mark all downstream dependencies as develop specs. + .. literalinclude:: outputs/dev/develop-5.out :language: console @@ -230,11 +232,8 @@ So far all of our calls to ``spack develop`` have been on a concretized environm If we don't want Spack to update the concrete environment's specs we can pass the ``---no-modify-concrete-spec``. Using ``---no-modify-concrete-spec`` will require you to force concretize an environment to have the develop specs take affect. -Examples of where we might want to use this feature are: -- The package we wish to develop is repeated in our environment and we need to be more selective. -- We want to mark a develop spec that doesn't exist yet in the environment. - -We will show an example of the latter, and how to update the local source if you decide to change the version. +There are a limited set of use-cases where one might want to use this option. +It can be useful for debugging unexpected behavior and For illustrative purposes We will show an example of adding a develop spec that is not yet in the environment, and how to update the local source if you decide to change the version. Let's say we plan to extend our environment to develop the ``nekbone`` package. .. literalinclude:: outputs/dev/develop-6.out From 14cab31642678d1bbdb8845ced2ddafd5a13d091 Mon Sep 17 00:00:00 2001 From: psakiev Date: Sun, 16 Nov 2025 22:37:29 -0700 Subject: [PATCH 09/16] Update for variant change Signed-off-by: psakiev --- outputs/dev.sh | 10 +++++++--- tutorial_developer_workflows.rst | 18 ++++++++++++++---- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/outputs/dev.sh b/outputs/dev.sh index 65e21e2fc..85be18f26 100755 --- a/outputs/dev.sh +++ b/outputs/dev.sh @@ -42,9 +42,13 @@ example dev/develop-4 "spack install" example dev/develop-5 "spack develop --recursive scr" example dev/develop-5 "spack find -cv macsio" -example dev/develop-6 "spack develop nekbone" -example dev/develop-6 "# Not the verison we wanted. This time lets add a version" -example dev/develop-6 "spack develop --force nekbone@17.0"` +fake_example dev/develop-6 "spack develop scr build_type=Debug" +spack develop scr build_type=Debug +example dev/develop-6 "spack develop --no-modify-concrete-specs scr build_type=Debug" + +example dev/develop-7 "# Not the verison we wanted. This time lets add a version" +example dev/develop-7 "spack develop --no-modify-concrete-specs scr@3.1.0 build_type=Debug" +example dev/develop-7 "spack concretize --force" example dev/otherdevel "cd ~" cd ~ || exit diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index b786a7287..8ff95d679 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -233,14 +233,24 @@ If we don't want Spack to update the concrete environment's specs we can pass th Using ``---no-modify-concrete-spec`` will require you to force concretize an environment to have the develop specs take affect. There are a limited set of use-cases where one might want to use this option. -It can be useful for debugging unexpected behavior and For illustrative purposes We will show an example of adding a develop spec that is not yet in the environment, and how to update the local source if you decide to change the version. -Let's say we plan to extend our environment to develop the ``nekbone`` package. +Some example cases include: + +- Updating a develop spec before updating the environment to change a variant or version +- Adding a develop spec that is not yet in the environment +- Debugging unexpected behavior + +For illustrative purposes we will show an example of switching ``scr`` to a debug build via the ``build_type=Debug`` variant. .. literalinclude:: outputs/dev/develop-6.out :language: console -The ``spack develop`` command only has any effect if the developed package appears in the environment, as a root or dependency. -Some additional concerns to use the ``spack develop`` command effectively: +We see that naively updating the develops spec, resulted first in an error and then an undesired version change. +To preserve the version and get the new variant added we run the following commands: + +.. literalinclude:: outputs/dev/develop-7.out + :language: console + +Some additional concerns to navigate for effective use of the ``spack develop`` command include: * ``spack add `` with the matching version you want to develop is a way to ensure the develop spec is satisfied in the ``spack.yaml`` environments file. * If the spec is not already concrete in the environment, you need to provide Spack a spec version so it can supply the correct flags for the package's build system. From 0aecbca8c61a143138fc8912edf24401d92c7719 Mon Sep 17 00:00:00 2001 From: psakiev Date: Sun, 16 Nov 2025 23:33:46 -0700 Subject: [PATCH 10/16] Fixes when running the AMI image locally Signed-off-by: psakiev --- tutorial_developer_workflows.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tutorial_developer_workflows.rst b/tutorial_developer_workflows.rst index 8ff95d679..b1b7f140f 100644 --- a/tutorial_developer_workflows.rst +++ b/tutorial_developer_workflows.rst @@ -140,7 +140,7 @@ Development iteration cycles Let's assume that ``scr`` has a bug, and we'd like to patch ``scr`` to find out what the problem is. First, we tell Spack that we'd like to check out the version of ``scr`` in our environment. -In this case, it will be the 3.1.0 release that we want to write a patch for: +In this case, it will be the 2.0.0 release that we want to write a patch for: .. literalinclude:: outputs/dev/develop-1.out :language: spec @@ -191,8 +191,11 @@ If the file times are newer, it will rebuild ``scr`` and any other package that :language: console Here, the build failed as expected. -We can look at the output for the build in ``scr/spack-build-out.txt`` to find out why, or we can launch a shell directly with the appropriate environment variables to figure out what went wrong by using ``spack build-env scr -- bash``. -If that's too much to remember, then sourcing ``scr/spack-build-env.txt`` will also set all the appropriate environment variables so we can diagnose the build ourselves. +We can look at the output for the build in the stage directory ``scr/build-linux-*/spack-build-out.txt`` to find out why. +The ``build-linux-*`` directory inside the source tree is a symlink to the spec's stage directory where all the logs are stored. +The full name of this directory can be found with ``spack location --stage scr`` or quickly navigated to with ``spack cd --stage scr``. +We can also launch a shell directly with the appropriate environment variables to figure out what went wrong by using ``spack build-env scr -- bash``. +If that's too much to remember, then sourcing ``scr/build-linux-*/spack-build-env.txt`` will also set all the appropriate environment variables so we can diagnose the build ourselves. Now let's fix it and rebuild directly. .. literalinclude:: outputs/dev/develop-4.out From 251c60073f89789cef469c60aed5307949ce6457 Mon Sep 17 00:00:00 2001 From: Alec Scott Date: Sun, 16 Nov 2025 17:15:06 -0600 Subject: [PATCH 11/16] basics: force ziplib to concretize on gcc@12 --- outputs/basics.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index 5402eb6f7..db2e3a26b 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -100,6 +100,6 @@ example basics/install-gcc-12.1.0 "spack install gcc@12" example basics/compilers-2 "spack compilers" -example basics/spec-zziplib "spack spec zziplib" +example basics/spec-zziplib "spack spec zziplib %gcc@12" echo y | example basics/compiler-uninstall 'spack uninstall gcc@12' From dcd5315e54993c0375c7893fb15ecc1df74cc35f Mon Sep 17 00:00:00 2001 From: Gregory Becker Date: Sun, 16 Nov 2025 17:49:48 -0600 Subject: [PATCH 12/16] workaround stacks duplicate module Signed-off-by: Gregory Becker --- outputs/stacks.sh | 28 +++++++++++----------- outputs/stacks/examples/9.spack.stack.yaml | 1 + tutorial_stacks.rst | 2 +- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/outputs/stacks.sh b/outputs/stacks.sh index 051e9d338..00d5e2e32 100755 --- a/outputs/stacks.sh +++ b/outputs/stacks.sh @@ -104,17 +104,17 @@ module unload gcc # Need to write a work around in the tutorial to teach audience how # to deal with this. -# cat "$project/stacks/examples/9.spack.stack.yaml" > ~/stacks/spack.yaml -# example stacks/modules-4 "spack module lmod refresh --delete-tree -y" - -# example --tee stacks/modules-5 "module load gcc" -# module load gcc -# example --tee stacks/modules-5 "module load openmpi openblas netlib-scalapack py-scipy" -# example --tee stacks/modules-5 "module av" -# module load openmpi openblas netlib-scalapack -# example --tee stacks/modules-5 "module load mpich" -# module load mpich -# example --tee stacks/modules-5 "module load netlib-lapack" -# module load netlib-lapack -# example --tee stacks/modules-5 "module purge" -# module purge +cat "$project/stacks/examples/9.spack.stack.yaml" > ~/stacks/spack.yaml +example stacks/modules-4 "spack module lmod refresh --delete-tree -y" + +example --tee stacks/modules-5 "module load gcc" +module load gcc +example --tee stacks/modules-5 "module load openmpi openblas netlib-scalapack py-scipy" +example --tee stacks/modules-5 "module av" +module load openmpi openblas netlib-scalapack +example --tee stacks/modules-5 "module load mpich" +module load mpich +example --tee stacks/modules-5 "module load netlib-lapack" +module load netlib-lapack +example --tee stacks/modules-5 "module purge" +module purge diff --git a/outputs/stacks/examples/9.spack.stack.yaml b/outputs/stacks/examples/9.spack.stack.yaml index e9359083b..2627beb78 100644 --- a/outputs/stacks/examples/9.spack.stack.yaml +++ b/outputs/stacks/examples/9.spack.stack.yaml @@ -45,6 +45,7 @@ spack: - gcc exclude: - '%gcc@11.4.0' + - 'autoconf' all: environment: set: diff --git a/tutorial_stacks.rst b/tutorial_stacks.rst index 0f2d246e7..d8654048a 100644 --- a/tutorial_stacks.rst +++ b/tutorial_stacks.rst @@ -418,7 +418,7 @@ To address all these needs we can complicate our ``modules`` configuration a bit .. literalinclude:: outputs/stacks/examples/9.spack.stack.yaml :language: yaml - :emphasize-lines: 41-58 + :emphasize-lines: 41-59 Regenerate the modules again: From c7ad7f1fe81f0af71568c1d99a28631ccbab29a1 Mon Sep 17 00:00:00 2001 From: Gregory Becker Date: Mon, 17 Nov 2025 00:47:22 -0600 Subject: [PATCH 13/16] add arg to fake_example Signed-off-by: Gregory Becker --- outputs/dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs/dev.sh b/outputs/dev.sh index 85be18f26..67925acea 100755 --- a/outputs/dev.sh +++ b/outputs/dev.sh @@ -42,7 +42,7 @@ example dev/develop-4 "spack install" example dev/develop-5 "spack develop --recursive scr" example dev/develop-5 "spack find -cv macsio" -fake_example dev/develop-6 "spack develop scr build_type=Debug" +fake_example dev/develop-6 "spack develop scr build_type=Debug" "/bin/true" spack develop scr build_type=Debug example dev/develop-6 "spack develop --no-modify-concrete-specs scr build_type=Debug" From 593f1702b34440b46c4aa63f9cbd9a73994f1ee7 Mon Sep 17 00:00:00 2001 From: Gregory Becker Date: Mon, 17 Nov 2025 01:34:13 -0600 Subject: [PATCH 14/16] fixup dev workflows failing example Signed-off-by: Gregory Becker --- outputs/dev.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/outputs/dev.sh b/outputs/dev.sh index 67925acea..1f07cf12a 100755 --- a/outputs/dev.sh +++ b/outputs/dev.sh @@ -42,8 +42,7 @@ example dev/develop-4 "spack install" example dev/develop-5 "spack develop --recursive scr" example dev/develop-5 "spack find -cv macsio" -fake_example dev/develop-6 "spack develop scr build_type=Debug" "/bin/true" -spack develop scr build_type=Debug +example --expect-error dev/develop-6 "spack develop scr build_type=Debug" example dev/develop-6 "spack develop --no-modify-concrete-specs scr build_type=Debug" example dev/develop-7 "# Not the verison we wanted. This time lets add a version" From 6133f128edebbe1fec8b3cef5cb8f2dc14612718 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Mon, 17 Nov 2025 09:28:17 +0100 Subject: [PATCH 15/16] speed up --- outputs/stacks.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/outputs/stacks.sh b/outputs/stacks.sh index 00d5e2e32..d34eb22d6 100755 --- a/outputs/stacks.sh +++ b/outputs/stacks.sh @@ -25,7 +25,9 @@ example stacks/setup-2 "spack install" example stacks/unify-0 "spack add netlib-scalapack %gcc@12 ^openblas ^openmpi" example stacks/unify-0 "spack add netlib-scalapack %gcc@12 ^openblas ^mpich" -example --expect-error stacks/unify-1 "spack concretize" +# Can't be concretized due to unify: true, but not worth showing because it's slow and leads to +# an "internal concretizer error" that confuses users. +# example --expect-error stacks/unify-1 "spack concretize" example stacks/unify-2 "spack config get concretizer | grep unify" From 3ad491ee7245b39009e73988f45231f34be00476 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 08:54:46 +0000 Subject: [PATCH 16/16] Update generated outputs on behalf of [@haampie] --- outputs/basics/clone.out | 6 +- outputs/basics/gmake.out | 10 +- outputs/basics/hdf5-hl-mpi.out | 194 ++++----- outputs/basics/hdf5-no-mpi.out | 14 +- outputs/basics/hdf5.out | 368 ++++++++-------- outputs/basics/install-gcc-12.1.0.out | 60 +-- outputs/basics/list.out | 4 + outputs/basics/mirror.out | 4 +- outputs/basics/spec-zziplib.out | 90 ++-- outputs/basics/tcl-zlib-clang.out | 4 +- outputs/basics/tcl-zlib-hash.out | 4 +- outputs/basics/tcl.out | 6 +- outputs/basics/trilinos-hdf5.out | 20 +- outputs/basics/trilinos.out | 30 +- outputs/basics/zlib-2.0.7.out | 2 +- outputs/basics/zlib-O3.out | 2 +- outputs/basics/zlib-clang.out | 10 +- outputs/basics/zlib-gcc-10.out | 6 +- outputs/dev/develop-1.out | 12 +- outputs/dev/develop-2.out | 78 ++-- outputs/dev/develop-3.out | 119 +++-- outputs/dev/develop-4.out | 64 +-- outputs/dev/develop-5.out | 101 +---- outputs/dev/develop-6.out | 7 + outputs/dev/develop-7.out | 99 +++++ outputs/dev/otherdevel.out | 6 +- outputs/dev/setup-scr.out | 84 ++-- outputs/environments/env-create-2.out | 248 +++++------ outputs/environments/env-install-1.out | 36 +- outputs/environments/incremental-1.out | 24 +- outputs/environments/incremental-2.out | 4 +- .../environments/install-independent-1.out | 16 +- outputs/packaging/build-output.out | 16 +- outputs/packaging/checksum-mpileaks-1.out | 2 +- outputs/packaging/create.out | 2 +- outputs/packaging/install-mpileaks-1.out | 14 +- outputs/packaging/install-mpileaks-2.out | 96 ++--- outputs/packaging/install-mpileaks-3.out | 46 +- outputs/packaging/install-mpileaks-4.out | 112 ++--- outputs/packaging/install-mpileaks-5.out | 42 +- outputs/packaging/install-mpileaks-6.out | 48 +-- outputs/packaging/repo-config.out | 3 +- outputs/packaging/repo-list.out | 2 +- outputs/stacks/concretize-0.out | 406 +++++++++--------- outputs/stacks/concretize-3.out | 218 +++++----- outputs/stacks/modules-0.out | 134 +++--- outputs/stacks/modules-4.out | 11 + outputs/stacks/modules-5.out | 83 ++-- outputs/stacks/setup-2.out | 34 +- 49 files changed, 1541 insertions(+), 1460 deletions(-) create mode 100644 outputs/dev/develop-6.out create mode 100644 outputs/dev/develop-7.out diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index 808074986..89820a1c8 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... remote: Enumerating objects: 2340, done.K remote: Counting objects: 100% (2340/2340), done.K remote: Compressing objects: 100% (1583/1583), done.K -Receiving objects: 100% (2340/2340), 5.30 MiB | 17.50 MiB/s, done. -remote: Total 2340 (delta 312), reused 1328 (delta 237), pack-reused 0 (from 0)K -Resolving deltas: 100% (312/312), done. +remote:nTotale2340 (delta2311),3reused 1329 (delta 237), pack-reused 0 (from 0)K +Receiving objects: 100% (2340/2340), 5.30 MiB | 20.25 MiB/s, done. +Resolving deltas: 100% (311/311), done. $ cd ~/spack diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index 946f251c7..1aa2bb4f5 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -5,25 +5,25 @@ $ spack install gmake ==> No binary for compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 found: installing from source ==> Installing compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [3/5] ==> Fetching https://mirror.spack.io/_source-cache/archive/a5/a5ff4fcdbeda284a7993b87f294b6338434cffc84ced31e4d04008ed5ea389bf - [100%] 30.08 KB @ 79.2 MB/s + [100%] 30.08 KB @ 185.8 MB/s ==> No patches needed for compiler-wrapper ==> compiler-wrapper: Executing phase: 'install' ==> compiler-wrapper: Successfully installed compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 - Stage: 0.06s. Install: 0.00s. Post-install: 0.01s. Total: 0.10s + Stage: 0.15s. Install: 0.01s. Post-install: 0.01s. Total: 0.18s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 ==> No binary for gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju found: installing from source ==> Installing gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju [4/5] ==> No patches needed for gcc-runtime ==> gcc-runtime: Executing phase: 'install' ==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju - Stage: 0.00s. Install: 0.05s. Post-install: 0.03s. Total: 0.10s + Stage: 0.00s. Install: 0.05s. Post-install: 0.03s. Total: 0.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju ==> No binary for gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh found: installing from source ==> Installing gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh [5/5] ==> Fetching https://mirror.spack.io/_source-cache/archive/dd/dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3.tar.gz - [100%] 62.35 MB @ 134.0 MB/s + [100%] 62.35 MB @ 163.0 MB/s ==> No patches needed for gmake ==> gmake: Executing phase: 'install' ==> gmake: Successfully installed gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh - Stage: 0.27s. Install: 10.59s. Post-install: 0.01s. Total: 10.88s + Stage: 0.24s. Install: 10.47s. Post-install: 0.01s. Total: 10.73s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh diff --git a/outputs/basics/hdf5-hl-mpi.out b/outputs/basics/hdf5-hl-mpi.out index 881858e7a..4ffa996ad 100644 --- a/outputs/basics/hdf5-hl-mpi.out +++ b/outputs/basics/hdf5-hl-mpi.out @@ -4,174 +4,174 @@ $ spack install hdf5+hl+mpi ^mpich [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/a4/a415291ec0b68c751833d609eddbe3ad9e78e2fd558829cabf6c2980075046be - [100%] 178.05 KB @ 490.7 MB/s -==> Extracting libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx from binary cache -==> libmd: Successfully installed libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx - Search: 0.00s. Fetch: 0.18s. Install: 0.31s. Extract: 0.29s. Relocate: 0.01s. Total: 0.49s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -==> Installing libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx [9/44] ==> Fetching file:///mirror/blobs/sha256/1f/1f49703b0c810fdbfdc81f37e47ce182bb088c058ec15a6622f8927f0e1e6605 - [100%] 61.27 MB @ 391.0 GB/s + [100%] 61.27 MB @ 939.4 MB/s ==> Extracting libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg from binary cache ==> libfabric: Successfully installed libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.06s. Relocate: 0.01s. Total: 0.09s + Search: 0.00s. Fetch: 0.17s. Install: 0.34s. Extract: 0.32s. Relocate: 0.01s. Total: 0.51s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -==> Installing libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [10/44] -==> Fetching file:///mirror/blobs/sha256/db/db254673cf42d6054fc35d8b78a7c8982bb1396c0ae9ee069145fa0b2c995bec - [100%] 90.69 KB @ 378.1 MB/s -==> Extracting libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa from binary cache -==> libffi: Successfully installed libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -==> Installing libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa [11/44] +==> Installing libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [7/44] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +==> Fetching file:///mirror/blobs/sha256/a4/a415291ec0b68c751833d609eddbe3ad9e78e2fd558829cabf6c2980075046be + [100%] 178.05 KB @ 537.6 MB/s +==> Extracting libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx from binary cache +==> libmd: Successfully installed libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx + Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +==> Installing libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx [17/44] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Fetching file:///mirror/blobs/sha256/19/19f0c67fa4a6fbba8d28a816970d6ae9a6fb809294c33add6da436d1b5c246d3 - [100%] 466.57 KB @ 696.2 MB/s -==> Extracting libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx from binary cache -==> libbsd: Successfully installed libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -==> Installing libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [23/44] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd +==> Fetching file:///mirror/blobs/sha256/db/db254673cf42d6054fc35d8b78a7c8982bb1396c0ae9ee069145fa0b2c995bec + [100%] 90.69 KB @ 364.7 MB/s +==> Extracting libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa from binary cache +==> libffi: Successfully installed libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa + Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa +==> Installing libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa [20/44] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz ==> Fetching file:///mirror/blobs/sha256/e2/e20e59828c817957d0e552e2dc3c24090b80ef4a58ea8ca61f71c6f11ebc00c5 - [100%] 63.82 MB @ 431.1 GB/s + [100%] 63.82 MB @ 411.2 GB/s ==> Extracting util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz from binary cache ==> util-linux-uuid: Successfully installed util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz - Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.10s. Relocate: 0.01s. Total: 0.14s + Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.10s. Relocate: 0.01s. Total: 0.13s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -==> Installing util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [25/44] +==> Installing util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [23/44] +==> Fetching file:///mirror/blobs/sha256/19/19f0c67fa4a6fbba8d28a816970d6ae9a6fb809294c33add6da436d1b5c246d3 + [100%] 466.57 KB @ 751.2 MB/s +==> Extracting libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx from binary cache +==> libbsd: Successfully installed libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx +==> Installing libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [24/44] +==> Fetching file:///mirror/blobs/sha256/55/55a205ae4e5c626a44a4e4e8ec35b0aeeb9f03851a3abbfd4eafa3acea384cab + [100%] 62.84 MB @ 421.2 GB/s +==> Extracting libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 from binary cache +==> libxml2: Successfully installed libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 + Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.08s. Relocate: 0.02s. Total: 0.12s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 +==> Installing libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [25/44] ==> Fetching file:///mirror/blobs/sha256/55/55d366e1ed4d9bff834caf7183afcef1b30dc15273a977e313fbb57ee0e22d79 - [100%] 92.66 KB @ 369.8 MB/s + [100%] 92.66 KB @ 362.2 MB/s ==> Extracting pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f from binary cache ==> pigz: Successfully installed pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s + Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f ==> Installing pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f [26/44] -==> Fetching file:///mirror/blobs/sha256/55/55a205ae4e5c626a44a4e4e8ec35b0aeeb9f03851a3abbfd4eafa3acea384cab - [100%] 62.84 MB @ 401.2 GB/s -==> Extracting libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -==> Installing libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [27/44] -==> Fetching file:///mirror/blobs/sha256/a1/a18f1c335be58a3aeb39c092dfe0c73984c32e2580f486d092dea5b1e407da17 - [100%] 11.28 MB @ 391.3 GB/s -==> Extracting sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d from binary cache -==> sqlite: Successfully installed sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d - Search: 0.00s. Fetch: 0.02s. Install: 0.25s. Extract: 0.21s. Relocate: 0.02s. Total: 0.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d -==> Installing sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [28/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo ==> Fetching file:///mirror/blobs/sha256/e5/e5157be2079ccc99173d7fd2213486da7176e82e8bf23ce080a7a02bdb7d47c7 - [100%] 689.50 KB @ 896.7 MB/s + [100%] 689.50 KB @ 866.6 MB/s ==> Extracting expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m from binary cache ==> expat: Successfully installed expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m -==> Installing expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [30/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel +==> Installing expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [29/44] +==> Fetching file:///mirror/blobs/sha256/3f/3f941a4a6d8c6a544de9b9f9ca2c1edebbd0855a8282414be03b7ee494255ed6 + [100%] 65.22 MB @ 421.3 GB/s +==> Extracting hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml from binary cache +==> hwloc: Successfully installed hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml + Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml +==> Installing hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml [30/44] ==> Fetching file:///mirror/blobs/sha256/62/62b08538ad6658858a7ca22c6df132b44bde7e26c857c5c0fb110bf017cd41b4 - [100%] 61.29 MB @ 431.1 GB/s + [100%] 61.29 MB @ 391.1 GB/s ==> Extracting tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our from binary cache ==> tar: Successfully installed tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our -==> Installing tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our [32/44] -==> Fetching file:///mirror/blobs/sha256/3f/3f941a4a6d8c6a544de9b9f9ca2c1edebbd0855a8282414be03b7ee494255ed6 - [100%] 65.22 MB @ 411.3 GB/s -==> Extracting hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml from binary cache -==> hwloc: Successfully installed hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.15s. Relocate: 0.02s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -==> Installing hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml [33/44] +==> Installing tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our [31/44] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +==> Fetching file:///mirror/blobs/sha256/a1/a18f1c335be58a3aeb39c092dfe0c73984c32e2580f486d092dea5b1e407da17 + [100%] 11.28 MB @ 431.3 GB/s +==> Extracting sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d from binary cache +==> sqlite: Successfully installed sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d + Search: 0.00s. Fetch: 0.02s. Install: 0.25s. Extract: 0.21s. Relocate: 0.02s. Total: 0.27s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d +==> Installing sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [33/44] +==> Fetching file:///mirror/blobs/sha256/e6/e64dc42db3bb276afc20902f2fcb1fee549d7e1eec9c27568d8b68a9070d4ba5 + [100%] 12.98 MB @ 581.3 GB/s +==> Extracting gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n from binary cache +==> gettext: Successfully installed gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n + Search: 0.00s. Fetch: 0.02s. Install: 0.58s. Extract: 0.53s. Relocate: 0.04s. Total: 0.61s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n +==> Installing gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [34/44] ==> Fetching file:///mirror/blobs/sha256/13/13e18b86d168af128baf45c9ca8119ad4c2e2d76eb7a0b8047b79514c8e454a2 - [100%] 15.58 MB @ 391.4 GB/s + [100%] 15.58 MB @ 471.3 GB/s ==> Extracting perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o from binary cache ==> perl: Successfully installed perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o Search: 0.00s. Fetch: 0.03s. Install: 0.75s. Extract: 0.63s. Relocate: 0.10s. Total: 0.78s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o -==> Installing perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o [34/44] -==> Fetching file:///mirror/blobs/sha256/e6/e64dc42db3bb276afc20902f2fcb1fee549d7e1eec9c27568d8b68a9070d4ba5 - [100%] 12.98 MB @ 411.4 GB/s -==> Extracting gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n from binary cache -==> gettext: Successfully installed gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n - Search: 0.00s. Fetch: 0.03s. Install: 0.58s. Extract: 0.53s. Relocate: 0.04s. Total: 0.61s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n -==> Installing gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [35/44] +==> Installing perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o [35/44] ==> Fetching file:///mirror/blobs/sha256/cd/cd166b12945d26bbf6a21ea4ca8d15c84ec769064c9364eb562d8fe70c28af37 - [100%] 61.03 MB @ 411.0 GB/s + [100%] 61.03 MB @ 960.8 MB/s ==> Extracting autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt from binary cache ==> autoconf: Successfully installed autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt ==> Installing autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt [36/44] ==> Fetching file:///mirror/blobs/sha256/d1/d16803492b1ade6e17bdf6601fc680467c31aa18850921432a42e4d741dfd406 - [100%] 68.28 MB @ 431.3 GB/s + [100%] 68.28 MB @ 481.3 GB/s ==> Extracting openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk from binary cache ==> openssl: Successfully installed openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk Search: 0.00s. Fetch: 0.02s. Install: 0.22s. Extract: 0.18s. Relocate: 0.02s. Total: 0.24s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk ==> Installing openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk [37/44] ==> Fetching file:///mirror/blobs/sha256/72/72fe4c49a0e381512d8c31a5a347af494a64b3d7f4631c6d67773d06bdb3fc81 - [100%] 707.31 KB @ 878.8 MB/s + [100%] 707.31 KB @ 885.6 MB/s ==> Extracting automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev from binary cache ==> automake: Successfully installed automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev ==> Installing automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev [38/44] -==> Fetching file:///mirror/blobs/sha256/26/268194947254564c7d44943e697d3d29e811524c9ac80506a88d436b9b0a12d6 - [100%] 99.41 MB @ 431.4 GB/s -==> Extracting python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q from binary cache -==> python: Successfully installed python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q - Search: 0.00s. Fetch: 0.15s. Install: 3.26s. Extract: 3.10s. Relocate: 0.14s. Total: 3.41s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q -==> Installing python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q [39/44] ==> Fetching file:///mirror/blobs/sha256/05/05cd00b722dcc2a1b80fc862d101e4f46753f4e50b0993328bdf63946d37bc9e - [100%] 61.29 MB @ 411.0 GB/s + [100%] 61.29 MB @ 996.7 MB/s ==> Extracting curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d from binary cache ==> curl: Successfully installed curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -==> Installing curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d [40/44] +==> Installing curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d [39/44] +==> Fetching file:///mirror/blobs/sha256/26/268194947254564c7d44943e697d3d29e811524c9ac80506a88d436b9b0a12d6 + [100%] 99.41 MB @ 371.4 GB/s +==> Extracting python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q from binary cache +==> python: Successfully installed python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q + Search: 0.00s. Fetch: 0.15s. Install: 3.27s. Extract: 3.11s. Relocate: 0.14s. Total: 3.42s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q +==> Installing python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q [40/44] +==> Fetching file:///mirror/blobs/sha256/68/689d4351df4932ce11f2828fde890996b3824266c37e139a5d2e2a01b33030fa + [100%] 31.66 MB @ 441.4 GB/s +==> Extracting cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft from binary cache +==> cmake: Successfully installed cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft + Search: 0.00s. Fetch: 0.05s. Install: 1.21s. Extract: 1.11s. Relocate: 0.09s. Total: 1.26s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft +==> Installing cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft [41/44] ==> Fetching file:///mirror/blobs/sha256/a4/a4055ea173b4a025c2dc02fe24b5e4b4c6a16ea2379b6b27ca3e884bd7d7524f - [100%] 63.01 MB @ 421.2 GB/s + [100%] 63.01 MB @ 421.1 GB/s ==> Extracting yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt from binary cache ==> yaksa: Successfully installed yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.01s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -==> Installing yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt [41/44] -==> Fetching file:///mirror/blobs/sha256/68/689d4351df4932ce11f2828fde890996b3824266c37e139a5d2e2a01b33030fa - [100%] 31.66 MB @ 401.3 GB/s -==> Extracting cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft from binary cache -==> cmake: Successfully installed cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft - Search: 0.00s. Fetch: 0.05s. Install: 1.22s. Extract: 1.12s. Relocate: 0.09s. Total: 1.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -==> Installing cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft [42/44] +==> Installing yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt [42/44] ==> Fetching file:///mirror/blobs/sha256/6e/6e89829f4d416b51fc7b5e82548020e058051490a202ee81d89beae6de23ddf1 - [100%] 15.50 MB @ 361.3 GB/s + [100%] 15.50 MB @ 471.3 GB/s ==> Extracting mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd from binary cache ==> mpich: Successfully installed mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd - Search: 0.00s. Fetch: 0.03s. Install: 0.95s. Extract: 0.88s. Relocate: 0.04s. Total: 0.97s + Search: 0.00s. Fetch: 0.03s. Install: 0.96s. Extract: 0.90s. Relocate: 0.04s. Total: 0.99s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd ==> Installing mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd [43/44] ==> Fetching file:///mirror/blobs/sha256/fc/fc2f2350962144ebd017a2d5d6a5cc44ef2e2e9847cf9f83ce41e35862e8335c - [100%] 65.82 MB @ 411.3 GB/s + [100%] 65.82 MB @ 411.2 GB/s ==> Extracting hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd from binary cache ==> hdf5: Successfully installed hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd - Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.14s. Relocate: 0.04s. Total: 0.22s + Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.14s. Relocate: 0.04s. Total: 0.22s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd ==> Installing hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd [44/44] diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 200a85a50..27f9326a2 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -3,21 +3,21 @@ $ spack install hdf5~mpi [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t ==> Fetching file:///mirror/blobs/sha256/5e/5e7d99c001b1d6e3169849a1f04f86749c9a50c6f9d72bd3f231504b99974d84 - [100%] 65.32 MB @ 431.2 GB/s + [100%] 65.32 MB @ 361.2 GB/s ==> Extracting hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh from binary cache ==> hdf5: Successfully installed hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh - Search: 0.00s. Fetch: 0.23s. Install: 0.41s. Extract: 0.37s. Relocate: 0.02s. Total: 0.64s + Search: 0.00s. Fetch: 0.17s. Install: 0.19s. Extract: 0.16s. Relocate: 0.02s. Total: 0.37s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh ==> Installing hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [16/16] diff --git a/outputs/basics/hdf5.out b/outputs/basics/hdf5.out index bfe1d1e40..2479f8931 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -3,148 +3,148 @@ $ spack install hdf5 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) ==> Fetching file:///mirror/blobs/sha256/0e/0ef0cfbbeac0c8aafa641c7518c7309ff69c9f3e1fc75611c445d9642e6967c7 - [100%] 133.95 KB @ 449.5 MB/s + [100%] 133.95 KB @ 433.2 MB/s ==> Extracting ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l from binary cache ==> ca-certificates-mozilla: Successfully installed ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l - Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.00s. Total: 0.21s + Search: 0.00s. Fetch: 0.16s. Install: 0.04s. Extract: 0.04s. Relocate: 0.00s. Total: 0.21s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l ==> Installing ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l [4/49] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/1d/1dfdc937ee8598e5d68494ac32c40bae8a780ae6d002f970ced9df2337813a45 - [100%] 463.08 KB @ 704.2 MB/s -==> Extracting pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h from binary cache -==> pkgconf: Successfully installed pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -==> Installing pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [7/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/3f/3fac396598eef662dd75093538ce2e36aa3338b60b65b9c50e86fba06f3b4bc8 - [100%] 61.57 MB @ 391.1 GB/s -==> Extracting zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea from binary cache -==> zstd: Successfully installed zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -==> Installing zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [9/49] -==> Fetching file:///mirror/blobs/sha256/44/4494a8094c6307a283260425c2fcae18f131557165dff36a1fee8c7865c0d8f8 - [100%] 117.07 KB @ 428.5 MB/s -==> Extracting libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w from binary cache -==> libsigsegv: Successfully installed libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -==> Installing libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [10/49] ==> Fetching file:///mirror/blobs/sha256/66/66b47dd2659fdd1aeca7d50aa2b32c9e5edde63a74e5233d3af0fa9ea98e12e6 - [100%] 62.20 MB @ 411.2 GB/s + [100%] 62.20 MB @ 381.1 GB/s ==> Extracting libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq from binary cache ==> libiconv: Successfully installed libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.06s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -==> Installing libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [11/49] -==> Fetching file:///mirror/blobs/sha256/d1/d17384f0564b5ebf91d4af10fbca9a24a9f60aefb00c518b111ff8a69f32e6eb - [100%] 61.87 MB @ 411.2 GB/s -==> Extracting xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph from binary cache -==> xz: Successfully installed xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -==> Installing xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [12/49] +==> Installing libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [7/49] +==> Fetching file:///mirror/blobs/sha256/1d/1dfdc937ee8598e5d68494ac32c40bae8a780ae6d002f970ced9df2337813a45 + [100%] 463.08 KB @ 747.9 MB/s +==> Extracting pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h from binary cache +==> pkgconf: Successfully installed pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h + Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +==> Installing pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [8/49] ==> Fetching file:///mirror/blobs/sha256/c6/c6d49b50b0d0d82666133a31f3073ec9bedaf33e3cc2eb2b56eecfd976973063 - [100%] 63.50 MB @ 371.2 GB/s + [100%] 63.50 MB @ 411.2 GB/s ==> Extracting berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma from binary cache ==> berkeley-db: Successfully installed berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s + Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.02s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -==> Installing berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [13/49] +==> Installing berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [9/49] ==> Fetching file:///mirror/blobs/sha256/b1/b1906ca502af23b4b0f3282011456bd4ca5523260fd89da710f430a253435c0a - [100%] 32.41 KB @ 183.5 MB/s + [100%] 32.41 KB @ 225.4 MB/s ==> Extracting util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b from binary cache ==> util-macros: Successfully installed util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.00s. Total: 0.02s + Search: 0.00s. Fetch: 0.01s. Install: 0.01s. Extract: 0.01s. Relocate: 0.00s. Total: 0.02s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b -==> Installing util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b [14/49] +==> Installing util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b [10/49] ==> Fetching file:///mirror/blobs/sha256/c6/c62eaf4a6c39647f96fdb028cbacbd1a80df424ab98658992cb8279939ed8c41 - [100%] 62.56 MB @ 421.2 GB/s + [100%] 62.56 MB @ 431.2 GB/s ==> Extracting mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle from binary cache ==> mbedtls: Successfully installed mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle - Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s + Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -==> Installing mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [15/49] +==> Installing mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [11/49] +==> Fetching file:///mirror/blobs/sha256/3f/3fac396598eef662dd75093538ce2e36aa3338b60b65b9c50e86fba06f3b4bc8 + [100%] 61.57 MB @ 471.1 GB/s +==> Extracting zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea from binary cache +==> zstd: Successfully installed zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +==> Installing zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [12/49] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +==> Fetching file:///mirror/blobs/sha256/d1/d17384f0564b5ebf91d4af10fbca9a24a9f60aefb00c518b111ff8a69f32e6eb + [100%] 61.87 MB @ 501.2 GB/s +==> Extracting xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph from binary cache +==> xz: Successfully installed xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.09s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +==> Installing xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [14/49] +==> Fetching file:///mirror/blobs/sha256/44/4494a8094c6307a283260425c2fcae18f131557165dff36a1fee8c7865c0d8f8 + [100%] 117.07 KB @ 414.0 MB/s +==> Extracting libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w from binary cache +==> libsigsegv: Successfully installed libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w + Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +==> Installing libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [15/49] +==> Fetching file:///mirror/blobs/sha256/34/34adb03543f15fe57c37dd1be4b1c985278c6f9146df526aeda980e6cb70ba75 + [100%] 61.13 MB @ 951.1 MB/s +==> Extracting diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk from binary cache +==> diffutils: Successfully installed diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk +==> Installing diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk [16/49] ==> Fetching file:///mirror/blobs/sha256/4e/4ed43030e94ab138bf850645bd620d9002ab739ca3e77f16ae6bae30283e97f5 - [100%] 67.06 MB @ 401.3 GB/s + [100%] 67.06 MB @ 481.3 GB/s ==> Extracting ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz from binary cache ==> ncurses: Successfully installed ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz - Search: 0.00s. Fetch: 0.02s. Install: 0.55s. Extract: 0.53s. Relocate: 0.02s. Total: 0.56s + Search: 0.00s. Fetch: 0.02s. Install: 0.54s. Extract: 0.52s. Relocate: 0.02s. Total: 0.56s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Installing ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [16/49] +==> Installing ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [17/49] +==> Fetching file:///mirror/blobs/sha256/78/7881079c346d61e1dfba6b1b3ca14a553d238f7eca9f4acdc8c57e5b54214367 + [100%] 196.78 KB @ 538.1 MB/s +==> Extracting libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 from binary cache +==> libpciaccess: Successfully installed libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 + Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +==> Installing libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [18/49] ==> Fetching file:///mirror/blobs/sha256/27/27af2631f6615cec0d1b2406c35636d51fa37af79c17946c6130805e7c207b06 - [100%] 92.66 KB @ 348.2 MB/s + [100%] 92.66 KB @ 406.9 MB/s ==> Extracting pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i from binary cache ==> pigz: Successfully installed pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -==> Installing pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [17/49] -==> Fetching file:///mirror/blobs/sha256/34/34adb03543f15fe57c37dd1be4b1c985278c6f9146df526aeda980e6cb70ba75 - [100%] 61.13 MB @ 411.0 GB/s -==> Extracting diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk from binary cache -==> diffutils: Successfully installed diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -==> Installing diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk [18/49] +==> Installing pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [19/49] ==> Fetching file:///mirror/blobs/sha256/10/10009edc0ab662fc4ced331ddbdf14aeef167df2b2dc41f7933dcd9d127c9cb5 [100%] 62.84 MB @ 411.2 GB/s ==> Extracting libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo from binary cache ==> libxml2: Successfully installed libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -==> Installing libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [19/49] -==> Fetching file:///mirror/blobs/sha256/78/7881079c346d61e1dfba6b1b3ca14a553d238f7eca9f4acdc8c57e5b54214367 - [100%] 196.78 KB @ 549.5 MB/s -==> Extracting libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 from binary cache -==> libpciaccess: Successfully installed libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -==> Installing libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [20/49] +==> Installing libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [20/49] ==> Fetching file:///mirror/blobs/sha256/8a/8a5c03cbe85a0616b5a7453c2e49c73459bca8d68fa34ffc30983f196bd05c99 - [100%] 61.34 MB @ 411.0 GB/s + [100%] 61.34 MB @ 431.0 GB/s ==> Extracting libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz from binary cache ==> libssh2: Successfully installed libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz ==> Installing libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [21/49] -==> Fetching file:///mirror/blobs/sha256/48/4888cf6a6164231bdbf7db524bdb5e6625d6fcc78050679a637aa622b8286397 - [100%] 956.91 KB @ 985.2 MB/s -==> Extracting libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x from binary cache -==> libedit: Successfully installed libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -==> Installing libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [22/49] -==> Fetching file:///mirror/blobs/sha256/45/45c1e7c02f8c8fbd907bdef165d55df31c77bc10c73036f2391ca5f39aac0281 - [100%] 61.75 MB @ 451.1 GB/s -==> Extracting readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo from binary cache -==> readline: Successfully installed readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.05s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Installing readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [23/49] +==> Fetching file:///mirror/blobs/sha256/ce/ce4f5147cf39139b278ca64732cad4621a778ba23d0411154f8c764b5683f574 + [100%] 898.08 KB @ 930.8 MB/s +==> Extracting nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg from binary cache +==> nghttp2: Successfully installed nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +==> Installing nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [22/49] ==> Fetching file:///mirror/blobs/sha256/7a/7a18b14df737930ea1c770febdf5eedf98552e5dfc62e3cb9d405a19fce3ec3b - [100%] 304.49 KB @ 659.7 MB/s + [100%] 304.49 KB @ 648.9 MB/s ==> Extracting bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl from binary cache ==> bzip2: Successfully installed bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -==> Installing bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [24/49] +==> Installing bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [23/49] ==> Fetching file:///mirror/blobs/sha256/c2/c2c4bbbacae5135ceab3532639bae0ea3a94a66b0ebf0afd55fa6fb0a4bb663f - [100%] 737.83 KB @ 884.5 MB/s + [100%] 737.83 KB @ 857.5 MB/s ==> Extracting m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g from binary cache ==> m4: Successfully installed m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Installing m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [25/49] -==> Fetching file:///mirror/blobs/sha256/ce/ce4f5147cf39139b278ca64732cad4621a778ba23d0411154f8c764b5683f574 - [100%] 898.08 KB @ 987.6 MB/s -==> Extracting nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg from binary cache -==> nghttp2: Successfully installed nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -==> Installing nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [26/49] +==> Installing m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [24/49] +==> Fetching file:///mirror/blobs/sha256/45/45c1e7c02f8c8fbd907bdef165d55df31c77bc10c73036f2391ca5f39aac0281 + [100%] 61.75 MB @ 471.2 GB/s +==> Extracting readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo from binary cache +==> readline: Successfully installed readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.05s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +==> Installing readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [25/49] +==> Fetching file:///mirror/blobs/sha256/48/4888cf6a6164231bdbf7db524bdb5e6625d6fcc78050679a637aa622b8286397 + [100%] 956.91 KB @ 998.7 MB/s +==> Extracting libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x from binary cache +==> libedit: Successfully installed libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +==> Installing libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [26/49] ==> Fetching file:///mirror/blobs/sha256/b5/b5f1aa7fd742a997b6da16a3bc722058e760f1b08e7a48e95857c7211e156bb0 [100%] 65.21 MB @ 421.3 GB/s ==> Extracting hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 from binary cache @@ -152,157 +152,157 @@ $ spack install hdf5 Search: 0.00s. Fetch: 0.01s. Install: 0.18s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 ==> Installing hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [27/49] -==> Fetching file:///mirror/blobs/sha256/c5/c50e18794a41a9e14570ec807cfdbc565907a7aefab4021c1bba6b7a477ebee2 - [100%] 61.01 MB @ 957.0 MB/s -==> Extracting gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 from binary cache -==> gdbm: Successfully installed gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Installing gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [28/49] ==> Fetching file:///mirror/blobs/sha256/45/45305870482486982cfc11ad7645b9bfc9ec49c7fff03110ac948e3848482cf9 - [100%] 61.29 MB @ 451.1 GB/s + [100%] 61.29 MB @ 481.1 GB/s ==> Extracting tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc from binary cache ==> tar: Successfully installed tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -==> Installing tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [29/49] +==> Installing tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [28/49] ==> Fetching file:///mirror/blobs/sha256/65/658171bfb6af49d486f682120270e8df942cac83c90a52d4500ff1c8dfbe514a - [100%] 61.95 MB @ 401.2 GB/s + [100%] 61.95 MB @ 351.1 GB/s ==> Extracting bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr from binary cache ==> bison: Successfully installed bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.09s. Relocate: 0.01s. Total: 0.11s + Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.01s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr -==> Installing bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr [30/49] -==> Fetching file:///mirror/blobs/sha256/ef/ef3c99d9afb190f512d368f31d533d430e3d8fc10338d053bf124a41ce425577 - [100%] 15.58 MB @ 411.4 GB/s -==> Extracting perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t from binary cache -==> perl: Successfully installed perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t - Search: 0.00s. Fetch: 0.03s. Install: 0.75s. Extract: 0.64s. Relocate: 0.10s. Total: 0.77s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -==> Installing perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [31/49] +==> Installing bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr [29/49] +==> Fetching file:///mirror/blobs/sha256/c5/c50e18794a41a9e14570ec807cfdbc565907a7aefab4021c1bba6b7a477ebee2 + [100%] 61.01 MB @ 451.0 GB/s +==> Extracting gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 from binary cache +==> gdbm: Successfully installed gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +==> Installing gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [30/49] ==> Fetching file:///mirror/blobs/sha256/72/725da24bd225c126a09054e27f312f4a101ec9445e1769aff787289c8f83fdfa - [100%] 12.98 MB @ 361.3 GB/s + [100%] 12.98 MB @ 451.3 GB/s ==> Extracting gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 from binary cache ==> gettext: Successfully installed gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 - Search: 0.00s. Fetch: 0.03s. Install: 0.57s. Extract: 0.52s. Relocate: 0.04s. Total: 0.60s + Search: 0.00s. Fetch: 0.02s. Install: 0.57s. Extract: 0.52s. Relocate: 0.04s. Total: 0.59s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -==> Installing gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [32/49] -==> Fetching file:///mirror/blobs/sha256/76/769c8eaef6cf77a19fe64faaed4427136ed3e3df9a5c5956450ccff49832d8a0 - [100%] 61.03 MB @ 988.7 MB/s -==> Extracting autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz from binary cache -==> autoconf: Successfully installed autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -==> Installing autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [33/49] -==> Fetching file:///mirror/blobs/sha256/b4/b4b3cb6b253eaecc83bfa130098ac8f01a70fd0f2a8870451fcd74aaa1e29ecd - [100%] 68.29 MB @ 371.3 GB/s -==> Extracting openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s from binary cache -==> openssl: Successfully installed openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s - Search: 0.00s. Fetch: 0.02s. Install: 0.21s. Extract: 0.18s. Relocate: 0.02s. Total: 0.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -==> Installing openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [34/49] -==> Fetching file:///mirror/blobs/sha256/ae/aee4ab2b46849d36e4ed1e6aff9db9bb55ab413eff401b37154ec324570a8dd1 - [100%] 771.91 KB @ 902.1 MB/s -==> Extracting libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr from binary cache -==> libxcrypt: Successfully installed libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -==> Installing libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [35/49] +==> Installing gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [31/49] +==> Fetching file:///mirror/blobs/sha256/ef/ef3c99d9afb190f512d368f31d533d430e3d8fc10338d053bf124a41ce425577 + [100%] 15.58 MB @ 441.3 GB/s +==> Extracting perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t from binary cache +==> perl: Successfully installed perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t + Search: 0.00s. Fetch: 0.03s. Install: 0.74s. Extract: 0.64s. Relocate: 0.10s. Total: 0.77s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +==> Installing perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [32/49] ==> Fetching file:///mirror/blobs/sha256/89/89326ba960a6e9a60af920776a173d0ed64900afb9e7a19b74dded5e2a4f990a - [100%] 61.50 MB @ 431.1 GB/s + [100%] 61.50 MB @ 461.1 GB/s ==> Extracting findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert from binary cache ==> findutils: Successfully installed findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -==> Installing findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [36/49] -==> Fetching file:///mirror/blobs/sha256/25/251ef730f1ff850ab1b34a1d626fca215106667757afdd592811abd8a35b4cb4 - [100%] 707.26 KB @ 853.4 MB/s -==> Extracting automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau from binary cache -==> automake: Successfully installed automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -==> Installing automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [37/49] -==> Fetching file:///mirror/blobs/sha256/ed/ed019861f13fc782c00c428b0d206fd96d2409d923c32772084fe788117f24d6 - [100%] 63.00 MB @ 351.2 GB/s -==> Extracting libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri from binary cache -==> libevent: Successfully installed libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -==> Installing libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [38/49] -==> Fetching file:///mirror/blobs/sha256/62/62111ab6149e8de545095a260d5ddac19529c6e23696164ca08f2c6c4b960909 - [100%] 61.38 MB @ 451.1 GB/s -==> Extracting curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz from binary cache -==> curl: Successfully installed curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -==> Installing curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [39/49] +==> Installing findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [33/49] +==> Fetching file:///mirror/blobs/sha256/ae/aee4ab2b46849d36e4ed1e6aff9db9bb55ab413eff401b37154ec324570a8dd1 + [100%] 771.91 KB @ 919.5 MB/s +==> Extracting libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr from binary cache +==> libxcrypt: Successfully installed libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +==> Installing libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [34/49] +==> Fetching file:///mirror/blobs/sha256/b4/b4b3cb6b253eaecc83bfa130098ac8f01a70fd0f2a8870451fcd74aaa1e29ecd + [100%] 68.29 MB @ 491.3 GB/s +==> Extracting openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s from binary cache +==> openssl: Successfully installed openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s + Search: 0.00s. Fetch: 0.02s. Install: 0.21s. Extract: 0.18s. Relocate: 0.02s. Total: 0.23s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +==> Installing openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [35/49] +==> Fetching file:///mirror/blobs/sha256/76/769c8eaef6cf77a19fe64faaed4427136ed3e3df9a5c5956450ccff49832d8a0 + [100%] 61.03 MB @ 411.0 GB/s +==> Extracting autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz from binary cache +==> autoconf: Successfully installed autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz +==> Installing autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [36/49] ==> Fetching file:///mirror/blobs/sha256/d3/d3a777a6a63cab468b47c9ff4d197de43448ac2d69b27e9773ff8f07c99f2038 - [100%] 518.48 KB @ 801.9 MB/s + [100%] 518.48 KB @ 654.0 MB/s ==> Extracting flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj from binary cache ==> flex: Successfully installed flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -==> Installing flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj [40/49] +==> Installing flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj [37/49] ==> Fetching file:///mirror/blobs/sha256/1a/1adc6688eb4e32d0cd8929461927011ff1d1634ea19982efe86954af39575786 - [100%] 807.31 KB @ 936.2 MB/s + [100%] 807.31 KB @ 871.1 MB/s ==> Extracting libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel from binary cache ==> libtool: Successfully installed libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.03s. Relocate: 0.03s. Total: 0.08s + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.03s. Relocate: 0.03s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -==> Installing libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [41/49] +==> Installing libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [38/49] +==> Fetching file:///mirror/blobs/sha256/ed/ed019861f13fc782c00c428b0d206fd96d2409d923c32772084fe788117f24d6 + [100%] 63.00 MB @ 371.2 GB/s +==> Extracting libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri from binary cache +==> libevent: Successfully installed libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.10s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri +==> Installing libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [39/49] +==> Fetching file:///mirror/blobs/sha256/62/62111ab6149e8de545095a260d5ddac19529c6e23696164ca08f2c6c4b960909 + [100%] 61.38 MB @ 441.1 GB/s +==> Extracting curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz from binary cache +==> curl: Successfully installed curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz +==> Installing curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [40/49] ==> Fetching file:///mirror/blobs/sha256/92/9241a95cbd75686a0858b3e9e6340a113fa143a8a6f5ee25e1e9f42a7fc52232 - [100%] 62.03 MB @ 351.2 GB/s + [100%] 62.03 MB @ 471.1 GB/s ==> Extracting krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu from binary cache ==> krb5: Successfully installed krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.07s. Relocate: 0.04s. Total: 0.13s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -==> Installing krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [42/49] -==> Fetching file:///mirror/blobs/sha256/83/8333941640a5fd6568dfe48908b7adc12ba97163affa301281e80e0d9f1a672a - [100%] 31.66 MB @ 431.4 GB/s -==> Extracting cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t from binary cache -==> cmake: Successfully installed cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t - Search: 0.00s. Fetch: 0.05s. Install: 1.22s. Extract: 1.12s. Relocate: 0.09s. Total: 1.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Installing cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [43/49] -==> Fetching file:///mirror/blobs/sha256/08/0871232ee4fc67d77039b6f53912897ff81c6614ea5d45410120e300ed7f8e31 - [100%] 427.92 KB @ 677.8 MB/s -==> Extracting numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp from binary cache -==> numactl: Successfully installed numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -==> Installing numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [44/49] +==> Installing krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [41/49] +==> Fetching file:///mirror/blobs/sha256/25/251ef730f1ff850ab1b34a1d626fca215106667757afdd592811abd8a35b4cb4 + [100%] 707.26 KB @ 936.7 MB/s +==> Extracting automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau from binary cache +==> automake: Successfully installed automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau +==> Installing automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [42/49] ==> Fetching file:///mirror/blobs/sha256/14/14509fcf26e36631b550c2401a1f9adc8246f781120fda7e4201f1548f772804 - [100%] 66.41 MB @ 381.2 GB/s + [100%] 66.41 MB @ 361.2 GB/s ==> Extracting pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm from binary cache ==> pmix: Successfully installed pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm - Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.16s. Relocate: 0.03s. Total: 0.21s + Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.15s. Relocate: 0.03s. Total: 0.21s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -==> Installing pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [45/49] +==> Installing pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [43/49] +==> Fetching file:///mirror/blobs/sha256/83/8333941640a5fd6568dfe48908b7adc12ba97163affa301281e80e0d9f1a672a + [100%] 31.66 MB @ 421.4 GB/s +==> Extracting cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t from binary cache +==> cmake: Successfully installed cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t + Search: 0.00s. Fetch: 0.05s. Install: 1.20s. Extract: 1.10s. Relocate: 0.09s. Total: 1.25s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t +==> Installing cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [44/49] ==> Fetching file:///mirror/blobs/sha256/ae/ae236b7dbea2d551b84907dc52b129e78bde46e2f545bd07e5cd2e5a1817939f - [100%] 63.06 MB @ 421.3 GB/s + [100%] 63.06 MB @ 401.1 GB/s ==> Extracting openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e from binary cache ==> openssh: Successfully installed openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.07s. Relocate: 0.04s. Total: 0.14s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -==> Installing openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [46/49] +==> Installing openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [45/49] +==> Fetching file:///mirror/blobs/sha256/08/0871232ee4fc67d77039b6f53912897ff81c6614ea5d45410120e300ed7f8e31 + [100%] 427.92 KB @ 802.7 MB/s +==> Extracting numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp from binary cache +==> numactl: Successfully installed numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +==> Installing numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [46/49] ==> Fetching file:///mirror/blobs/sha256/07/078f59369bf8079cde7b22e60697307d41294d228794e96e6d0d1b895f434e39 - [100%] 64.89 MB @ 381.3 GB/s + [100%] 64.89 MB @ 441.3 GB/s ==> Extracting prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w from binary cache ==> prrte: Successfully installed prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w - Search: 0.00s. Fetch: 0.01s. Install: 0.16s. Extract: 0.11s. Relocate: 0.02s. Total: 0.17s + Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.11s. Relocate: 0.02s. Total: 0.17s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w ==> Installing prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [47/49] ==> Fetching file:///mirror/blobs/sha256/7e/7ed1f4a69cac1ee5aba05154bd28e707d1bf7dd66bc69ca73a214dd6c699c3e8 [100%] 14.50 MB @ 441.4 GB/s ==> Extracting openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln from binary cache ==> openmpi: Successfully installed openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln - Search: 0.00s. Fetch: 0.03s. Install: 0.71s. Extract: 0.65s. Relocate: 0.03s. Total: 0.74s + Search: 0.00s. Fetch: 0.03s. Install: 0.69s. Extract: 0.64s. Relocate: 0.03s. Total: 0.72s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln ==> Installing openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [48/49] ==> Fetching file:///mirror/blobs/sha256/fa/fa0049cf0a1dd88d2c331c771c32730a7f567969d27c1932dddd6adc10e21c5b [100%] 65.63 MB @ 411.3 GB/s ==> Extracting hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv from binary cache ==> hdf5: Successfully installed hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv - Search: 0.00s. Fetch: 0.02s. Install: 0.19s. Extract: 0.13s. Relocate: 0.04s. Total: 0.21s + Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.13s. Relocate: 0.04s. Total: 0.20s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv ==> Installing hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv [49/49] diff --git a/outputs/basics/install-gcc-12.1.0.out b/outputs/basics/install-gcc-12.1.0.out index 845d7bafd..8b72051c6 100644 --- a/outputs/basics/install-gcc-12.1.0.out +++ b/outputs/basics/install-gcc-12.1.0.out @@ -3,75 +3,75 @@ $ spack install gcc@12 [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk ==> Fetching file:///mirror/blobs/sha256/78/78bdc9d57126ca9978f6f134fcd63b65f193826176545252fe02e4bb1ad8e780 - [100%] 694.36 KB @ 807.6 MB/s + [100%] 694.36 KB @ 826.2 MB/s ==> Extracting autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs from binary cache ==> autoconf-archive: Successfully installed autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs Search: 0.00s. Fetch: 0.17s. Install: 0.15s. Extract: 0.13s. Relocate: 0.00s. Total: 0.32s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs -==> Installing autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs [18/33] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +==> Installing autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs [8/33] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz ==> Fetching file:///mirror/blobs/sha256/e0/e01036e697dbfdc8fc3ce8a2c4162aaed2ade7cd28f519516941167f7e2029ab - [100%] 63.04 MB @ 391.2 GB/s + [100%] 63.04 MB @ 401.2 GB/s ==> Extracting texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix from binary cache ==> texinfo: Successfully installed texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix - Search: 0.00s. Fetch: 0.01s. Install: 0.47s. Extract: 0.18s. Relocate: 0.27s. Total: 0.48s + Search: 0.00s. Fetch: 0.01s. Install: 0.21s. Extract: 0.16s. Relocate: 0.03s. Total: 0.22s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix ==> Installing texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix [28/33] ==> Fetching file:///mirror/blobs/sha256/b5/b57252a0c7495982ba160d400ea7d010773dd2f00b63561f7303add6c412d22f - [100%] 910.58 KB @ 950.3 MB/s + [100%] 910.58 KB @ 950.5 MB/s ==> Extracting gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu from binary cache ==> gmp: Successfully installed gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu ==> Installing gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [29/33] ==> Fetching file:///mirror/blobs/sha256/1d/1d04af1bb1c8c72898e3699705f3baa628cecdc5926864a15f59875812267be3 - [100%] 62.71 MB @ 391.2 GB/s + [100%] 62.71 MB @ 381.2 GB/s ==> Extracting mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud from binary cache ==> mpfr: Successfully installed mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud ==> Installing mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud [30/33] -==> Fetching file:///mirror/blobs/sha256/79/79a434126cb4944739f23d9450686d25c92f2a51b162f06e451bd0f1f4ce94e2 - [100%] 635.39 KB @ 798.9 MB/s -==> Extracting mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog from binary cache -==> mpc: Successfully installed mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.02s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -==> Installing mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [31/33] ==> Fetching file:///mirror/blobs/sha256/94/94b6854379dc5c2a979fbb57e93a339ce21c8be52a24596eef886dfa741f973f - [100%] 62.37 MB @ 401.2 GB/s + [100%] 62.37 MB @ 391.2 GB/s ==> Extracting gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd from binary cache ==> gawk: Successfully installed gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.06s. Relocate: 0.02s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd -==> Installing gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd [32/33] +==> Installing gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd [31/33] +==> Fetching file:///mirror/blobs/sha256/79/79a434126cb4944739f23d9450686d25c92f2a51b162f06e451bd0f1f4ce94e2 + [100%] 635.39 KB @ 835.2 MB/s +==> Extracting mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog from binary cache +==> mpc: Successfully installed mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog + Search: 0.00s. Fetch: 0.01s. Install: 0.26s. Extract: 0.02s. Relocate: 0.01s. Total: 0.26s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog +==> Installing mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [32/33] ==> Fetching file:///mirror/blobs/sha256/1f/1fc94cabbbd6e9c052ea3a10d368fcbd30d3b2c4f18da478323a5e354cec9596 - [100%] 651.91 MB @ 411.4 GB/s + [100%] 651.91 MB @ 451.4 GB/s ==> Extracting gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc from binary cache ==> Wrote new spec file to /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc/lib/gcc/x86_64-pc-linux-gnu/12.3.0/specs ==> gcc: Successfully installed gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc - Search: 0.00s. Fetch: 0.94s. Install: 12.33s. Extract: 10.98s. Relocate: 1.31s. Total: 13.27s + Search: 0.00s. Fetch: 0.94s. Install: 12.50s. Extract: 11.10s. Relocate: 1.35s. Total: 13.44s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc ==> Installing gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc [33/33] diff --git a/outputs/basics/list.out b/outputs/basics/list.out index f68c5b294..38829893a 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,4 +1,8 @@ $ spack list +remote: Enumerating objects: 19701, done.K +remote: Counting objects: 100% (19701/19701), done.K +remote: Compressing objects: 100% (10555/10555), done.K +remote: Total 19701 (delta 1337), reused 13774 (delta 1222), pack-reused 0 (from 0)K 3dtk 3proxy 7zip diff --git a/outputs/basics/mirror.out b/outputs/basics/mirror.out index 54c1e4cfd..0a69262f8 100644 --- a/outputs/basics/mirror.out +++ b/outputs/basics/mirror.out @@ -1,9 +1,9 @@ $ spack mirror add tutorial /mirror $ spack buildcache keys --install --trust ==> Fetching file:///mirror/blobs/sha256/f6/f6ea4378846cd46ab23fc727c20afc772f03c83a8b3b57b275f511f196d6b9d9 - [100%] 56.00 B @ 399.5 KB/s + [100%] 56.00 B @ 407.8 KB/s ==> Fetching file:///mirror/blobs/sha256/e6/e6b951d7df78889b27537f245504b97a6d211a2ae023fe9922a4beb51238a35c - [100%] 10.43 KB @ 172.6 MB/s + [100%] 10.43 KB @ 177.7 MB/s gpg: key A8E0CA3C1C2ADA2F: 7 signatures not checked due to missing keys gpg: key A8E0CA3C1C2ADA2F: public key "Spack Project Official Binaries " imported gpg: Total number processed: 1 diff --git a/outputs/basics/spec-zziplib.out b/outputs/basics/spec-zziplib.out index 5d9bbc6d0..17ee245c1 100644 --- a/outputs/basics/spec-zziplib.out +++ b/outputs/basics/spec-zziplib.out @@ -1,39 +1,67 @@ -$ spack spec zziplib - - zziplib@0.13.78~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +$ spack spec zziplib %gcc@12 + - zziplib@0.13.78~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 + - ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 [+] ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 [+] ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^coreutils@9.7~gprefix build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[e] ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 + - ^coreutils@9.7~gprefix build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 +[+] ^gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^gawk@5.3.1~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[e] ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^mpfr@4.2.1 build_system=autotools libs:=shared,static patches:=3ec29a6 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^autoconf-archive@2023.02.20 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - ^gcc-runtime@12.3.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 [e] ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 [+] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 [+] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^python@3.14.0+bz2+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - ^python@3.14.0+bz2+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 + - ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 + - ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 + - ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 + - ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 [+] ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - ^unzip@6.0 build_system=makefile patches:=179330d,24582ff,251d575,3371314,44599c8,47e9def,4e5a081,59c0983,64f6498,74bc961,7d8e5c7,81ca46c,881d2ed,aced0f2,b6f64d7,b7a14c3,c9a863e,ee9e260,f6f6236,f88b9d4,fde8f9d platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^zip@3.0 build_system=makefile patches:=14dc880,3bc30ba,5068e7c,51f48db,66ab4ce,a92fc4e,a95ed93,b930b69,eb83fc8,f7d0bc4,fa8312c platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - ^zip@3.0 build_system=makefile patches:=14dc880,3bc30ba,5068e7c,51f48db,66ab4ce,a92fc4e,a95ed93,b930b69,eb83fc8,f7d0bc4,fa8312c platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 + - ^zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 diff --git a/outputs/basics/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index 32a52ddc1..b4c3a0591 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -6,9 +6,9 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma ==> Fetching file:///mirror/blobs/sha256/75/751ebd94e77a39c48a0199bb1df7d465bf36581647a13ee274c49026d1dca348 - [100%] 16.12 MB @ 371.3 GB/s + [100%] 16.12 MB @ 401.3 GB/s ==> Extracting tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz from binary cache ==> tcl: Successfully installed tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz - Search: 0.00s. Fetch: 0.19s. Install: 1.01s. Extract: 0.94s. Relocate: 0.06s. Total: 1.20s + Search: 0.00s. Fetch: 0.19s. Install: 1.00s. Extract: 0.94s. Relocate: 0.06s. Total: 1.19s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz ==> Installing tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz [7/7] diff --git a/outputs/basics/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out index f3715eab0..0bee4f8db 100644 --- a/outputs/basics/tcl-zlib-hash.out +++ b/outputs/basics/tcl-zlib-hash.out @@ -6,9 +6,9 @@ $ spack install tcl ^/qla [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw ==> Fetching file:///mirror/blobs/sha256/d8/d8d39a8adcbdced977371947a8c04345f31aef23409780c4fa6b6e257f59fc8d - [100%] 16.13 MB @ 391.3 GB/s + [100%] 16.13 MB @ 401.3 GB/s ==> Extracting tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq from binary cache ==> tcl: Successfully installed tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq - Search: 0.00s. Fetch: 0.19s. Install: 1.02s. Extract: 0.95s. Relocate: 0.06s. Total: 1.21s + Search: 0.00s. Fetch: 0.19s. Install: 1.01s. Extract: 0.95s. Relocate: 0.06s. Total: 1.20s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq ==> Installing tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [7/7] diff --git a/outputs/basics/tcl.out b/outputs/basics/tcl.out index d5102d5e7..74fbad416 100644 --- a/outputs/basics/tcl.out +++ b/outputs/basics/tcl.out @@ -5,16 +5,16 @@ $ spack install tcl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma ==> Fetching file:///mirror/blobs/sha256/ff/ffb2fabc060249fff7e2b34e57cd6de403b72025a1e78dcaed55ddec9e8f2fd1 - [100%] 220.69 KB @ 542.3 MB/s + [100%] 220.69 KB @ 535.1 MB/s ==> Extracting zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd ==> Installing zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [6/7] ==> Fetching file:///mirror/blobs/sha256/00/002f82b15e261bc3b23cb8fb003b2f8a83b267bc52bbd2061e1ad67e09183a73 - [100%] 16.13 MB @ 441.3 GB/s + [100%] 16.13 MB @ 401.3 GB/s ==> Extracting tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 from binary cache ==> tcl: Successfully installed tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 - Search: 0.00s. Fetch: 0.03s. Install: 0.98s. Extract: 0.92s. Relocate: 0.06s. Total: 1.02s + Search: 0.00s. Fetch: 0.03s. Install: 0.98s. Extract: 0.92s. Relocate: 0.06s. Total: 1.01s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 ==> Installing tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 [7/7] diff --git a/outputs/basics/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index 7de83cef4..fc77c3f6e 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -3,28 +3,28 @@ $ spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk [+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd ==> Fetching file:///mirror/blobs/sha256/c7/c7ed19feafe0f0046e4f0689facd006014ff8e8744548b4cb1e39b5a9c1fb19e - [100%] 39.02 MB @ 431.4 GB/s + [100%] 39.02 MB @ 391.3 GB/s ==> Extracting trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe from binary cache ==> trilinos: Successfully installed trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe Search: 0.00s. Fetch: 0.22s. Install: 1.55s. Extract: 1.38s. Relocate: 0.14s. Total: 1.77s diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 0d2579d91..648aedea2 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -3,27 +3,27 @@ $ spack install trilinos [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq ==> Fetching file:///mirror/blobs/sha256/d9/d966a88895b095541c290ecfce5555fdfdb74d87d83bef2e08f25cec5c7cbd2f - [100%] 23.97 MB @ 361.3 GB/s + [100%] 23.97 MB @ 451.2 GB/s ==> Extracting openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt from binary cache ==> openblas: Successfully installed openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt - Search: 0.00s. Fetch: 0.21s. Install: 0.64s. Extract: 0.58s. Relocate: 0.04s. Total: 0.85s + Search: 0.00s. Fetch: 0.20s. Install: 0.64s. Extract: 0.58s. Relocate: 0.04s. Total: 0.84s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -==> Installing openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [12/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +==> Installing openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [18/36] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz @@ -37,7 +37,7 @@ $ spack install trilinos [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w ==> Fetching file:///mirror/blobs/sha256/51/516c893799325a240194084e2c9ca9e5c4bfd9c246f9262c3f6169f8531e8ca6 - [100%] 61.03 MB @ 341.0 GB/s + [100%] 61.03 MB @ 877.2 MB/s ==> Extracting kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 from binary cache ==> kokkos: Successfully installed kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.12s. Relocate: 0.01s. Total: 0.15s @@ -53,9 +53,9 @@ $ spack install trilinos ==> Installing kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght [34/36] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln ==> Fetching file:///mirror/blobs/sha256/e8/e8e9738ee974efbf1676f64752e74a7548f6d7a2ef89385f32170c76234007e2 - [100%] 38.92 MB @ 401.3 GB/s + [100%] 38.92 MB @ 441.4 GB/s ==> Extracting trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv from binary cache ==> trilinos: Successfully installed trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv - Search: 0.00s. Fetch: 0.06s. Install: 1.52s. Extract: 1.34s. Relocate: 0.15s. Total: 1.58s + Search: 0.00s. Fetch: 0.06s. Install: 1.53s. Extract: 1.35s. Relocate: 0.14s. Total: 1.59s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv ==> Installing trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv [36/36] diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index 9c37f6d2b..89d6a1fc2 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -5,7 +5,7 @@ $ spack install zlib-ng@2.0.7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma ==> Fetching file:///mirror/blobs/sha256/20/2085c20a1109b030f20fc22fcedf9d26221e06992c78cb0741bda2908f371e53 - [100%] 196.30 KB @ 572.2 MB/s + [100%] 196.30 KB @ 499.6 MB/s ==> Extracting zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s diff --git a/outputs/basics/zlib-O3.out b/outputs/basics/zlib-O3.out index 69a4e13e2..40e0cbd88 100644 --- a/outputs/basics/zlib-O3.out +++ b/outputs/basics/zlib-O3.out @@ -5,7 +5,7 @@ $ spack install zlib-ng@2.0.7 cflags=-O3 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma ==> Fetching file:///mirror/blobs/sha256/42/42a994755d7599f4b2471cd3dcc1d5d244b4cf9187cf8d73ec3b522dd5ac252b - [100%] 209.73 KB @ 528.7 MB/s + [100%] 209.73 KB @ 570.9 MB/s ==> Extracting zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s diff --git a/outputs/basics/zlib-clang.out b/outputs/basics/zlib-clang.out index b2dce7871..4a177df67 100644 --- a/outputs/basics/zlib-clang.out +++ b/outputs/basics/zlib-clang.out @@ -1,28 +1,28 @@ $ spack install zlib-ng %clang ==> Fetching file:///mirror/blobs/sha256/26/26ccb2dd448159527529cfe52ba032f5fceecec872ff580cfed6fde523663934 - [100%] 351.34 KB @ 664.1 MB/s + [100%] 351.34 KB @ 689.9 MB/s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) ==> Fetching file:///mirror/blobs/sha256/cc/cc94a1eb6710d8556df7f38940e55a2496551b567ad5cbc6c1be80d24ad02c99 - [100%] 10.48 MB @ 351.3 GB/s + [100%] 10.48 MB @ 401.3 GB/s ==> Extracting gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh from binary cache ==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh ==> Installing gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [5/7] ==> Fetching file:///mirror/blobs/sha256/fd/fd27cb50518ba7449532809cf527a065fd7a84fae10042d1aa53b929899cc007 - [100%] 462.31 KB @ 730.3 MB/s + [100%] 462.31 KB @ 737.6 MB/s ==> Extracting gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma from binary cache ==> gmake: Successfully installed gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma ==> Installing gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [6/7] ==> Fetching file:///mirror/blobs/sha256/be/be279bb783c2fc29d9943d4fa11aab2704e9c0114c91f2aabd882d16b36fa2c6 - [100%] 240.79 KB @ 535.2 MB/s + [100%] 240.79 KB @ 627.3 MB/s ==> Extracting zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s + Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.02s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd ==> Installing zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd [7/7] diff --git a/outputs/basics/zlib-gcc-10.out b/outputs/basics/zlib-gcc-10.out index e3bdab549..8f5cae939 100644 --- a/outputs/basics/zlib-gcc-10.out +++ b/outputs/basics/zlib-gcc-10.out @@ -3,21 +3,21 @@ $ spack install zlib-ng %gcc@10 [+] /usr (external gcc-10.5.0-ntkvysydhiybjhukdyndi7mf7nhsv4u7) [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) ==> Fetching file:///mirror/blobs/sha256/74/7451c122b920fb458060a9b2ad9c19f599c210674ebe10f79357eb4e15c01f31 - [100%] 10.48 MB @ 391.3 GB/s + [100%] 10.48 MB @ 371.2 GB/s ==> Extracting gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp from binary cache ==> gcc-runtime: Successfully installed gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp ==> Installing gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp [4/6] ==> Fetching file:///mirror/blobs/sha256/62/62350cfe0247aa8ce61f72a6b0eb8aaf19d1504123cf18236fc1ba81dc1f33a6 - [100%] 458.45 KB @ 719.4 MB/s + [100%] 458.45 KB @ 786.8 MB/s ==> Extracting gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n from binary cache ==> gmake: Successfully installed gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n ==> Installing gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n [5/6] ==> Fetching file:///mirror/blobs/sha256/dd/ddb82d46c5ee682bda269c4a781010f0374102750dbfe10d8fb9d5f52f317380 - [100%] 221.37 KB @ 531.8 MB/s + [100%] 221.37 KB @ 574.9 MB/s ==> Extracting zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s diff --git a/outputs/dev/develop-1.out b/outputs/dev/develop-1.out index 30d8dafc3..7c2253c1d 100644 --- a/outputs/dev/develop-1.out +++ b/outputs/dev/develop-1.out @@ -1,9 +1,19 @@ $ spack develop scr ==> Cloning source code for scr@=2.0.0 ==> Fetching https://mirror.spack.io/_source-cache/archive/47/471978ae0afb56a20847d3989b994fbd680d1dea21e77a5a46a964b6e3deed6b.tar.gz - [100%] 955.92 KB @ 123.3 MB/s + [100%] 955.92 KB @ 81.0 MB/s ==> Updating view at /home/spack/devel-env/.spack-env/view $ spack config blame develop --- develop: /home/spack/devel-env/spack.yaml:16 scr: /home/spack/devel-env/spack.yaml:17 spec: scr@=2.0.0 +$ spack find -cv scr +==> In environment /home/spack/devel-env +==> 1 root specs +-- no arch / no compilers --------------------------------------- + - macsio+scr + +-- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ + - scr@2.0.0+dtcmp~fortran~ipo+libyogrt async_api=NONE build_system=cmake build_type=Release cache_base=/dev/shm cntl_base=/dev/shm copy_config=none dev_path=/home/spack/devel-env/scr file_lock=FLOCK generator=make resource_manager=SLURM scr_config=scr.conf +==> 0 installed packages +==> 1 concretized package to be installed diff --git a/outputs/dev/develop-2.out b/outputs/dev/develop-2.out index e8d930e78..bc729997c 100644 --- a/outputs/dev/develop-2.out +++ b/outputs/dev/develop-2.out @@ -3,63 +3,63 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g ==> No binary for scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw found: installing from source ==> Installing scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw [62/63] ==> No patches needed for scr @@ -67,17 +67,17 @@ $ spack install ==> scr: Executing phase: 'build' ==> scr: Executing phase: 'install' ==> scr: Successfully installed scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw - Stage: 0.00s. Cmake: 1.42s. Build: 4.44s. Install: 0.18s. Post-install: 0.04s. Total: 6.17s + Stage: 0.00s. Cmake: 1.41s. Build: 4.38s. Install: 0.18s. Post-install: 0.04s. Total: 6.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw ==> No binary for macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu found: installing from source ==> Installing macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu [63/63] ==> Fetching https://mirror.spack.io/_source-cache/archive/a8/a86249b0f10647c0b631773db69568388094605ec1a0af149d9e61e95e6961ec.tar.gz - [100%] 64.50 MB @ 278.8 MB/s + [100%] 64.50 MB @ 239.3 MB/s ==> Applied patch /home/spack/.spack/package_repos/fncqgg4/repos/spack_repo/builtin/packages/macsio/cast.patch ==> macsio: Executing phase: 'cmake' ==> macsio: Executing phase: 'build' ==> macsio: Executing phase: 'install' ==> macsio: Successfully installed macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu - Stage: 0.24s. Cmake: 1.17s. Build: 1.29s. Install: 0.05s. Post-install: 0.02s. Total: 2.85s + Stage: 0.16s. Cmake: 1.16s. Build: 1.29s. Install: 0.05s. Post-install: 0.02s. Total: 2.76s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu ==> Updating view at /home/spack/devel-env/.spack-env/view diff --git a/outputs/dev/develop-3.out b/outputs/dev/develop-3.out index 1967f8204..371a839f6 100644 --- a/outputs/dev/develop-3.out +++ b/outputs/dev/develop-3.out @@ -3,63 +3,63 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g ==> No binary for scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw found: installing from source ==> Installing scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw [62/63] ==> No patches needed for scr @@ -69,21 +69,6 @@ $ spack install '/home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 4 errors found in build log: - 142 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql - 7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' - 143 cd /tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw/ - spack-build-xuzclql && /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-i - vvor7vdsqvplv65yyfragoxppyfi33t/bin/cmake -E cmake_depends "Unix Makefiles" /home - /spack/devel-env/scr /home/spack/devel-env/scr/src /tmp/spack/spack-stage/spack-s - tage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql /tmp/spack/sp - ack-stage/spack-stage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzc - lql/src /tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjo - xfyw/spack-build-xuzclql/src/CMakeFiles/scr.dir/DependInfo.cmake "--color=" - 144 make[2]: Nothing to be done for 'src/CMakeFiles/scr_transfer.dir/build'. - 145 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 - mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' - 146 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql - 7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' 147 cd /tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw/ spack-build-xuzclql && /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-i vvor7vdsqvplv65yyfragoxppyfi33t/bin/cmake -E cmake_depends "Unix Makefiles" /home @@ -93,28 +78,36 @@ $ spack install lql/src /tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjo xfyw/spack-build-xuzclql/src/CMakeFiles/scr-static.dir/DependInfo.cmake "--color= " - >> 148 /home/spack/devel-env/scr/src/scr_copy.c:44:1: error: expected ',' or ';' before + 148 [ 81%] Built target scr_transfer + 149 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 + mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' + 150 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 + mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' + 151 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63b + sjhoqma/bin/make -f src/CMakeFiles/scr.dir/build.make src/CMakeFiles/scr.dir/bui + ld + 152 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63b + sjhoqma/bin/make -f src/CMakeFiles/scr-static.dir/build.make src/CMakeFiles/scr- + static.dir/build + >> 153 /home/spack/devel-env/scr/src/scr_copy.c:44:1: error: expected ',' or ';' before 'int' - 149 44 | int print_usage() - 150 | ^~~ - 151 [ 81%] Built target scr_transfer - 152 /home/spack/devel-env/scr/src/scr_copy.c: In function 'process_args': - 153 /home/spack/devel-env/scr/src/scr_copy.c:135:9: warning: implicit declaration of - function 'print_usage' [-Wimplicit-function-declaration] - 154 135 | print_usage(); - - ... - - 160 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql + 154 44 | int print_usage() + 155 | ^~~ + 156 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql 7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' - 161 make[2]: Nothing to be done for 'src/CMakeFiles/scr.dir/build'. - 162 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 + 157 make[2]: Nothing to be done for 'src/CMakeFiles/scr.dir/build'. + 158 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' - 163 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql + 159 make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql 7mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' - 164 make[2]: Nothing to be done for 'src/CMakeFiles/scr-static.dir/build'. - 165 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 + 160 make[2]: Nothing to be done for 'src/CMakeFiles/scr-static.dir/build'. + 161 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' + 162 /home/spack/devel-env/scr/src/scr_copy.c: In function 'process_args': + 163 /home/spack/devel-env/scr/src/scr_copy.c:135:9: warning: implicit declaration of + function 'print_usage' [-Wimplicit-function-declaration] + 164 135 | print_usage(); + 165 | ^~~~~~~~~~~ >> 166 make[2]: *** [src/CMakeFiles/scr_copy.dir/build.make:82: src/CMakeFiles/scr_copy. dir/scr_copy.c.o] Error 1 167 make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-scr-2.0.0-xuzclql7 @@ -127,7 +120,7 @@ $ spack install mxpy3jegwg6po3ewjbjoxfyw/spack-build-xuzclql' >> 173 make: *** [Makefile:149: all] Error 2 174 ==> scr: Executing phase: 'install' - 175 ==> [2025-11-17-05:44:52.890955] '/home/spack/spack/opt/spack/linux-x86_64_v3/gma + 175 ==> [2025-11-17-08:53:40.517325] '/home/spack/spack/opt/spack/linux-x86_64_v3/gma ke-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 'install' 176 /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragox ppyfi33t/bin/cmake -S/home/spack/devel-env/scr -B/tmp/spack/spack-stage/spack-sta diff --git a/outputs/dev/develop-4.out b/outputs/dev/develop-4.out index 0200ad15d..bfb88fbef 100644 --- a/outputs/dev/develop-4.out +++ b/outputs/dev/develop-4.out @@ -4,61 +4,61 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z [+] /home/spack/spack/opt/spack/linux-x86_64_v3/silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot ==> No binary for scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw found: installing from source @@ -68,7 +68,7 @@ $ spack install ==> scr: Executing phase: 'build' ==> scr: Executing phase: 'install' ==> scr: Successfully installed scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw - Stage: 0.00s. Cmake: 0.00s. Build: 0.26s. Install: 0.17s. Post-install: 0.04s. Total: 0.63s + Stage: 0.00s. Cmake: 0.00s. Build: 0.26s. Install: 0.17s. Post-install: 0.04s. Total: 0.60s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/scr-2.0.0-xuzclql7mxpy3jegwg6po3ewjbjoxfyw ==> No binary for macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu found: installing from source ==> Installing macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu [63/63] @@ -78,5 +78,5 @@ $ spack install ==> macsio: Executing phase: 'build' ==> macsio: Executing phase: 'install' ==> macsio: Successfully installed macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu - Stage: 0.04s. Cmake: 1.17s. Build: 1.29s. Install: 0.05s. Post-install: 0.02s. Total: 2.64s + Stage: 0.04s. Cmake: 1.17s. Build: 1.29s. Install: 0.05s. Post-install: 0.02s. Total: 2.65s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/macsio-1.1-3uiweakny3apccoagw7fczwrjwoeqxwu diff --git a/outputs/dev/develop-5.out b/outputs/dev/develop-5.out index 5b72aef17..142584298 100644 --- a/outputs/dev/develop-5.out +++ b/outputs/dev/develop-5.out @@ -1,94 +1,15 @@ -$ # This time let's leave off the version -$ spack develop macsio +$ spack develop --recursive scr +==> Skipping developer download of scr because its path /home/spack/devel-env/scr already exists. ==> Cloning source code for macsio@=1.1 ==> Using cached archive: /home/spack/spack/var/spack/cache/_source-cache/archive/a8/a86249b0f10647c0b631773db69568388094605ec1a0af149d9e61e95e6961ec.tar.gz ==> Updating view at /home/spack/devel-env/.spack-env/view -$ spack concretize -f -==> Concretized 1 spec: - - tybv4y5 macsio@1.1~exodus~hdf5~ipo+mpi~pdb+scr~silo~szip~typhonio~zfp~zlib build_system=cmake build_type=Release dev_path=/home/spack/devel-env/macsio generator=make patches:=59479b9 platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ivvor7v ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] isdtvvd ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh+libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=mbedtls,openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] txa2olx ^libssh2@1.11.1+shared build_system=autotools crypto=mbedtls platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] yzaocbs ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] bz3ghzh ^mbedtls@2.28.9+pic build_system=makefile build_type=Release libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ft5kpbd ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] gv7wpik ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] etqlnw5 ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ncdxq3j ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] qlavhjb ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ntccuj2 ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] ml7cem5 ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] nokfxva ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] qg7qyaz ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] 4obn7cg ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] xb3rsbk ^json-cwx@0.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] fgsf5ij ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] pzmnwzm ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] yt7ajy4 ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] irvryts ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] cakgj4n ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] lfgvgva ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] kaz756e ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] foiizhd ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] lxvpwti ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] cih4xrz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] qtepnkr ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] bs5ujst ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] tqxbnvo ^openmpi@5.0.8+atomics~cuda~debug+fortran~gpfs~internal-hwloc~internal-libevent~internal-pmix~ipv6~java~lustre~memchecker~openshmem~rocm~romio+rsh~static~two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics:=none romio-filesystem:=none schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@11.4.0 -[+] 4hos372 ^hwloc@2.12.2~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] txbwcin ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] hwxnwvm ^util-macros@1.20.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] 5trxrsw ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] lprginh ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] yzbm5q6 ^numactl@2.0.18 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] cxdcxo5 ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] hnmy4fw ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] n7yzkyl ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] hdzcfgi ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] yiij42p ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] 62kt5y4 ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] vdgigsw ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] x7t4naj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] aq7qwy6 ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] c6d2zlj ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] f4qiprw ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] yqlblh6 ^pmix@6.0.0~munge~python build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] buin62m ^prrte@4.0.0 build_system=autotools schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] gmhq65u ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - dgw6cpt ^scr@2.0.0+dtcmp~fortran~ipo+libyogrt async_api=NONE build_system=cmake build_type=Release cache_base=/dev/shm cntl_base=/dev/shm copy_config=none dev_path=/home/spack/devel-env/scr file_lock=FLOCK generator=make resource_manager=SLURM scr_config=scr.conf platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@11.4.0 -[+] 2kcmd2x ^dtcmp@1.1.5+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] bms4pwx ^lwgrp@1.0.6+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ylblit5 ^libyogrt@1.35~static build_system=autotools scheduler=slurm platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@11.4.0 -[+] tc55ttm ^slurm@25-05-1-1~cgroup~gtk~hdf5~hwloc~mariadb~nvml~pam~pmix+readline~restd~rsmi build_system=autotools sysconfdir=PREFIX/etc platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] arsxi4d ^glib@2.86.1+introspection~libmount~strip build_system=meson buildtype=release default_library:=shared tracing:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] brbwl6l ^elfutils@0.193~debuginfod+exeprefix+nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] zktpj7s ^gobject-introspection@1.86.0~strip build_system=meson buildtype=release default_library:=shared platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] dcark7n ^glib-bootstrap@2.86.1~strip build_system=meson buildtype=release default_library:=shared platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] zgro4tw ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] muzysky ^meson@1.8.5 build_system=python_pip patches:=0f0b1bd platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] hjc6yfd ^py-pip@25.1.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] lnndrge ^py-setuptools@80.9.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] hpfn7k7 ^py-wheel@0.45.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] 2stmhpc ^ninja@1.13.0+re2c build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] axmwics ^re2c@3.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] z5vjj7q ^pcre2@10.44~jit+multibyte+pic build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] rbf2x4i ^python@3.11.14+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches:=13fa8bf,b0615b2,ebdca64,f2fd060 platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] 7yr5v6w ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ucrhsyw ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] gth3ii5 ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] elvodyb ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] n45otd3 ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] essoyki ^python-venv@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] 5viqezv ^json-c@0.18~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] 7m7ijno ^lz4@1.10.0+pic build_system=makefile libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] itsnhnf ^munge@0.5.15 build_system=autotools localstatedir=PREFIX/var platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] 4j7zjzs ^libgcrypt@1.11.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] jerwaho ^libgpg-error@1.55 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] irhvzch ^gawk@5.3.1~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] mj4re3l ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] m3nwalt ^mpfr@4.2.1 build_system=autotools libs:=shared,static patches:=3ec29a6 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] 7p7gq7u ^autoconf-archive@2023.02.20 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] k6ygirs ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] eicmuq5 ^pdsh@2.31+ssh+static_modules build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +$ spack find -cv macsio +==> In environment /home/spack/devel-env +==> 1 root specs +-- no arch / no compilers --------------------------------------- + - macsio+scr -==> Updating view at /home/spack/devel-env/.spack-env/view +-- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- + - macsio@1.1~exodus~hdf5~ipo+mpi~pdb+scr+silo~szip~typhonio~zfp~zlib build_system=cmake build_type=Release dev_path=/home/spack/devel-env/macsio generator=make patches:=59479b9 +==> 0 installed packages +==> 1 concretized package to be installed diff --git a/outputs/dev/develop-6.out b/outputs/dev/develop-6.out new file mode 100644 index 000000000..8b5ccd1ef --- /dev/null +++ b/outputs/dev/develop-6.out @@ -0,0 +1,7 @@ +$ spack develop scr build_type=Debug +==> Defaulting to highest version: scr@develop +==> Skipping developer download of scr because its path /home/spack/devel-env/scr already exists. +==> Error: Develop spec 'scr@=develop build_type=Debug' conflicts with concrete specs in environment. Try again with 'spack develop --no-modify-concrete-specs' and run 'spack concretize --force' to apply your changes. +$ spack develop --no-modify-concrete-specs scr build_type=Debug +==> Defaulting to highest version: scr@develop +==> Skipping developer download of scr because its path /home/spack/devel-env/scr already exists. diff --git a/outputs/dev/develop-7.out b/outputs/dev/develop-7.out new file mode 100644 index 000000000..0cbc96804 --- /dev/null +++ b/outputs/dev/develop-7.out @@ -0,0 +1,99 @@ +$ # Not the verison we wanted. This time lets add a version +$ spack develop --no-modify-concrete-specs scr@3.1.0 build_type=Debug +==> Skipping developer download of scr because its path /home/spack/devel-env/scr already exists. +$ spack concretize --force +==> Concretized 1 spec: + - ltx53j7 macsio@1.1~exodus~hdf5~ipo+mpi~pdb+scr~silo~szip~typhonio~zfp~zlib build_system=cmake build_type=Release dev_path=/home/spack/devel-env/macsio generator=make patches:=59479b9 platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ivvor7v ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] isdtvvd ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh+libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=mbedtls,openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] txa2olx ^libssh2@1.11.1+shared build_system=autotools crypto=mbedtls platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] yzaocbs ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] bz3ghzh ^mbedtls@2.28.9+pic build_system=makefile build_type=Release libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] ft5kpbd ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] gv7wpik ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] etqlnw5 ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] ncdxq3j ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] qlavhjb ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ntccuj2 ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[e] ml7cem5 ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] nokfxva ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[e] qg7qyaz ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] 4obn7cg ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] xb3rsbk ^json-cwx@0.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] fgsf5ij ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] pzmnwzm ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] yt7ajy4 ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] irvryts ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] cakgj4n ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] lfgvgva ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] kaz756e ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] foiizhd ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] lxvpwti ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] cih4xrz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] qtepnkr ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] bs5ujst ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] tqxbnvo ^openmpi@5.0.8+atomics~cuda~debug+fortran~gpfs~internal-hwloc~internal-libevent~internal-pmix~ipv6~java~lustre~memchecker~openshmem~rocm~romio+rsh~static~two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics:=none romio-filesystem:=none schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@11.4.0 +[+] 4hos372 ^hwloc@2.12.2~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] txbwcin ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] hwxnwvm ^util-macros@1.20.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] 5trxrsw ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] lprginh ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] yzbm5q6 ^numactl@2.0.18 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] cxdcxo5 ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] hnmy4fw ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] n7yzkyl ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] hdzcfgi ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] yiij42p ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] 62kt5y4 ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] vdgigsw ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] x7t4naj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] aq7qwy6 ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] c6d2zlj ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] f4qiprw ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] yqlblh6 ^pmix@6.0.0~munge~python build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] buin62m ^prrte@4.0.0 build_system=autotools schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] gmhq65u ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - wunzdqt ^scr@3.1.0~bbapi~dw+examples~fortran~ipo+libyogrt+pdsh+pthreads+shared+tests build_system=cmake build_type=Debug cache_base=/dev/shm cntl_base=/dev/shm copy_config=none dev_path=/home/spack/devel-env/scr file_lock=FLOCK generator=make resource_manager=SLURM scr_config=scr.conf platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@11.4.0 + - zxozdyw ^axl@0.9.0~bbapi~bbapi_fallback~dw~ipo+mpi+pthreads+shared async_api:=daemon build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] 2kcmd2x ^dtcmp@1.1.5+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] bms4pwx ^lwgrp@1.0.6+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 + - 4qdy75u ^er@0.5.0~ipo+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - vexogwp ^kvtree@1.5.0~ipo+mpi+shared build_system=cmake build_type=Release file_lock=FLOCK generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ylblit5 ^libyogrt@1.35~static build_system=autotools scheduler=slurm platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@11.4.0 +[+] tc55ttm ^slurm@25-05-1-1~cgroup~gtk~hdf5~hwloc~mariadb~nvml~pam~pmix+readline~restd~rsmi build_system=autotools sysconfdir=PREFIX/etc platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] arsxi4d ^glib@2.86.1+introspection~libmount~strip build_system=meson buildtype=release default_library:=shared tracing:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] brbwl6l ^elfutils@0.193~debuginfod+exeprefix+nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] zktpj7s ^gobject-introspection@1.86.0~strip build_system=meson buildtype=release default_library:=shared platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] dcark7n ^glib-bootstrap@2.86.1~strip build_system=meson buildtype=release default_library:=shared platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] zgro4tw ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] muzysky ^meson@1.8.5 build_system=python_pip patches:=0f0b1bd platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] hjc6yfd ^py-pip@25.1.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] lnndrge ^py-setuptools@80.9.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] hpfn7k7 ^py-wheel@0.45.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] 2stmhpc ^ninja@1.13.0+re2c build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] axmwics ^re2c@3.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] z5vjj7q ^pcre2@10.44~jit+multibyte+pic build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] rbf2x4i ^python@3.11.14+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches:=13fa8bf,b0615b2,ebdca64,f2fd060 platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] 7yr5v6w ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] ucrhsyw ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] gth3ii5 ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] elvodyb ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] n45otd3 ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] essoyki ^python-venv@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] 5viqezv ^json-c@0.18~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] 7m7ijno ^lz4@1.10.0+pic build_system=makefile libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] itsnhnf ^munge@0.5.15 build_system=autotools localstatedir=PREFIX/var platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] 4j7zjzs ^libgcrypt@1.11.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] jerwaho ^libgpg-error@1.55 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] irhvzch ^gawk@5.3.1~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] mj4re3l ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] m3nwalt ^mpfr@4.2.1 build_system=autotools libs:=shared,static patches:=3ec29a6 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 +[+] 7p7gq7u ^autoconf-archive@2023.02.20 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 +[+] k6ygirs ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[+] eicmuq5 ^pdsh@2.31+ssh+static_modules build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 + - quwelpn ^rankstr@0.4.0~ipo+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - 27xkpnh ^redset@0.4.0~cuda~ipo~openmp~pthreads+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - k7tdoqr ^shuffile@0.4.0~ipo+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + - 5usa3ye ^spath@0.4.0~ipo+mpi+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 + +==> Updating view at /home/spack/devel-env/.spack-env/view diff --git a/outputs/dev/otherdevel.out b/outputs/dev/otherdevel.out index 158ec5e9b..f6e0736f4 100644 --- a/outputs/dev/otherdevel.out +++ b/outputs/dev/otherdevel.out @@ -4,9 +4,9 @@ $ cd devel-other $ cp ../devel-env/spack.yaml . $ spacktivate . $ spack develop -==> Cloning source code for scr@=2.0.0 -==> Fetching https://mirror.spack.io/_source-cache/archive/47/471978ae0afb56a20847d3989b994fbd680d1dea21e77a5a46a964b6e3deed6b.tar.gz - [100%] 955.92 KB @ 106.8 MB/s +==> Cloning source code for scr@=3.1.0 build_type=Debug +==> Fetching https://mirror.spack.io/_source-cache/archive/ca/ca1f37c84e0ff7a307e68f213c8cc868974d7fb30f16826853a711c7c3a55ffa.tar.gz + [100%] 61.27 MB @ 109.0 MB/s ==> Cloning source code for macsio@=1.1 ==> Using cached archive: /home/spack/spack/var/spack/cache/_source-cache/archive/a8/a86249b0f10647c0b631773db69568388094605ec1a0af149d9e61e95e6961ec.tar.gz $ ls diff --git a/outputs/dev/setup-scr.out b/outputs/dev/setup-scr.out index f186f49da..3d2c6a49b 100644 --- a/outputs/dev/setup-scr.out +++ b/outputs/dev/setup-scr.out @@ -104,73 +104,73 @@ $ spack install [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa [+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w ==> Fetching file:///mirror/blobs/sha256/48/48fa302f6c1994e22f46eb1883f243e7fb6d168ef16dc9591715cb5fb43e32b0 - [100%] 296.57 KB @ 583.2 MB/s + [100%] 296.57 KB @ 642.5 MB/s ==> Extracting json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi from binary cache ==> json-cwx: Successfully installed json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi - Search: 0.00s. Fetch: 0.18s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.27s + Search: 0.00s. Fetch: 0.17s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.26s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi -==> Installing json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi [61/70] +==> Installing json-cwx-0.12-xb3rsbkkz6mb4b2rapjkeq5iginffvwi [59/70] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 ==> Fetching file:///mirror/blobs/sha256/65/65ae9a603ce1917040c73608811bb5779ec04211baedabfe384ef482fc407230 - [100%] 65.58 MB @ 391.2 GB/s + [100%] 65.58 MB @ 351.2 GB/s ==> Extracting silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez from binary cache ==> silo: Successfully installed silo-4.11.1-vsguusygbz767eclcacoq2hzu3ivoeez Search: 0.00s. Fetch: 0.01s. Install: 0.21s. Extract: 0.11s. Relocate: 0.05s. Total: 0.23s @@ -181,10 +181,20 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot [+] /home/spack/spack/opt/spack/linux-x86_64_v3/scr-2.0.0-f57s4noxfkoiizusmhjyjue2h3fn2yrc ==> Fetching file:///mirror/blobs/sha256/90/90e2346d1c5b126a904a0fe6ff4dd0a471ca34c462b9e63ad4f1c70079afb1f0 - [100%] 109.67 KB @ 406.0 MB/s + [100%] 109.67 KB @ 417.8 MB/s ==> Extracting macsio-1.1-2qq3umgemah2sniqgfdlkdjtitxrrumm from binary cache ==> macsio: Successfully installed macsio-1.1-2qq3umgemah2sniqgfdlkdjtitxrrumm Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.01s. Relocate: 0.07s. Total: 0.14s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/macsio-1.1-2qq3umgemah2sniqgfdlkdjtitxrrumm ==> Installing macsio-1.1-2qq3umgemah2sniqgfdlkdjtitxrrumm [70/70] ==> Updating view at /home/spack/devel-env/.spack-env/view +$ spack find -cv scr +==> In environment /home/spack/devel-env +==> 1 root specs +-- no arch / no compilers --------------------------------------- +[+] macsio+scr + +-- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ +[+] scr@2.0.0+dtcmp~fortran~ipo+libyogrt async_api=NONE build_system=cmake build_type=Release cache_base=/dev/shm cntl_base=/dev/shm copy_config=none file_lock=FLOCK generator=make resource_manager=SLURM scr_config=scr.conf +==> 1 installed package +==> 0 concretized packages to be installed diff --git a/outputs/environments/env-create-2.out b/outputs/environments/env-create-2.out index 2502b9775..bd09cb8e5 100644 --- a/outputs/environments/env-create-2.out +++ b/outputs/environments/env-create-2.out @@ -99,225 +99,225 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -==> Fetching file:///mirror/blobs/sha256/98/984402dc3a91c2e23afca6927d70333514be42924f8cae6884701da2f5f9452e - [100%] 454.51 KB @ 719.1 MB/s -==> Extracting lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy from binary cache -==> lz4: Successfully installed lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy - Search: 0.00s. Fetch: 0.17s. Install: 0.50s. Extract: 0.48s. Relocate: 0.01s. Total: 0.67s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy -==> Installing lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy [16/78] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +==> Fetching file:///mirror/blobs/sha256/86/86fb192e56f8ba22766223f66df8f1e23887592aa7ffce25814fcbee6906bc6f + [100%] 61.89 MB @ 401.1 GB/s +==> Extracting pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x from binary cache +==> pcre2: Successfully installed pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x + Search: 0.00s. Fetch: 0.61s. Install: 0.13s. Extract: 0.11s. Relocate: 0.01s. Total: 0.74s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x +==> Installing pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x [30/78] ==> Fetching file:///mirror/blobs/sha256/f8/f83982dcd606318ac47c8530943171a30020ac1dc394119c9413da51577c6921 - [100%] 248.04 KB @ 593.8 MB/s + [100%] 248.04 KB @ 650.2 MB/s ==> Extracting pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm from binary cache ==> pdsh: Successfully installed pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.04s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm -==> Installing pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm [32/78] +==> Installing pdsh-2.31-eicmuq5waz3gebhupmaxeo5bw5cl2gkm [31/78] +==> Fetching file:///mirror/blobs/sha256/98/984402dc3a91c2e23afca6927d70333514be42924f8cae6884701da2f5f9452e + [100%] 454.51 KB @ 749.1 MB/s +==> Extracting lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy from binary cache +==> lz4: Successfully installed lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy +==> Installing lz4-1.10.0-7m7ijnovafqfvcxitqrbveal5qgz57cy [32/78] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -==> Fetching file:///mirror/blobs/sha256/86/86fb192e56f8ba22766223f66df8f1e23887592aa7ffce25814fcbee6906bc6f - [100%] 61.89 MB @ 351.0 GB/s -==> Extracting pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x from binary cache -==> pcre2: Successfully installed pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -==> Installing pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x [34/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri ==> Fetching file:///mirror/blobs/sha256/14/1473c9741eeb9fda67f831dfb46a1acac67f2a7d7d368bf8c4f0daab1bfdac0a - [100%] 11.28 MB @ 421.3 GB/s + [100%] 11.28 MB @ 411.3 GB/s ==> Extracting sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 from binary cache ==> sqlite: Successfully installed sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 - Search: 0.00s. Fetch: 0.02s. Install: 0.26s. Extract: 0.21s. Relocate: 0.02s. Total: 0.28s + Search: 0.00s. Fetch: 0.02s. Install: 0.25s. Extract: 0.21s. Relocate: 0.02s. Total: 0.28s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 ==> Installing sqlite-3.50.4-elvodybm3egmq2kdk74ca3jdhzcnxu77 [36/78] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m ==> Fetching file:///mirror/blobs/sha256/d3/d3f5d2b3248af7b87c689e35dc208c0b55bf7545702ff183e6b8fc8797d69ba0 - [100%] 61.26 MB @ 391.1 GB/s + [100%] 61.26 MB @ 992.9 MB/s ==> Extracting libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx from binary cache ==> libgpg-error: Successfully installed libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx -==> Installing libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx [51/78] +==> Installing libgpg-error-1.55-jerwahojdgk4ga5b5vopwmu4oto356qx [49/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm +==> Fetching file:///mirror/blobs/sha256/f0/f0630ac8ca8b34ca2e5a8b6a7f34e8381380338d790b092972e40958ac233379 + [100%] 62.75 MB @ 391.0 GB/s +==> Extracting libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn from binary cache +==> libgcrypt: Successfully installed libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn +==> Installing libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn [53/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu ==> Fetching file:///mirror/blobs/sha256/b6/b6b9abd8adbf885c4a37c33a3d9d0cfa11ef5d2672db006596e7e84507ca9da6 - [100%] 11.52 MB @ 401.3 GB/s + [100%] 11.52 MB @ 391.3 GB/s ==> Extracting elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 from binary cache ==> elfutils: Successfully installed elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 - Search: 0.00s. Fetch: 0.02s. Install: 0.30s. Extract: 0.24s. Relocate: 0.04s. Total: 0.33s + Search: 0.00s. Fetch: 0.02s. Install: 0.30s. Extract: 0.24s. Relocate: 0.04s. Total: 0.32s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 -==> Installing elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [52/78] +==> Installing elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [55/78] ==> Fetching file:///mirror/blobs/sha256/f3/f324b55f9e4991e98d187e352e9887e52789095963d66756c3be232aff8c8e27 - [100%] 78.97 MB @ 401.4 GB/s + [100%] 78.97 MB @ 421.4 GB/s ==> Extracting python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz from binary cache ==> python: Successfully installed python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz - Search: 0.00s. Fetch: 0.12s. Install: 2.88s. Extract: 2.74s. Relocate: 0.11s. Total: 3.00s + Search: 0.00s. Fetch: 0.12s. Install: 2.86s. Extract: 2.73s. Relocate: 0.11s. Total: 2.98s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz -==> Installing python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz [53/78] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu +==> Installing python-3.11.14-rbf2x4id5wuf7yihgm6fv5vtm2qoc2bz [56/78] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Fetching file:///mirror/blobs/sha256/f0/f0630ac8ca8b34ca2e5a8b6a7f34e8381380338d790b092972e40958ac233379 - [100%] 62.75 MB @ 401.2 GB/s -==> Extracting libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn from binary cache -==> libgcrypt: Successfully installed libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn -==> Installing libgcrypt-1.11.2-4j7zjzsf5hbmbypjyd4gqmpy6yp2esmn [57/78] -==> Fetching file:///mirror/blobs/sha256/ec/ec1ddbbebff6f1e9c98c88a0a8c55f4ae992aec98e27894b028f0df6256c35cc - [100%] 14.82 KB @ 195.5 MB/s -==> Extracting python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o from binary cache -==> python-venv: Successfully installed python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o -==> Installing python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [58/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w +==> Fetching file:///mirror/blobs/sha256/7b/7b48104f7cc2412a9dff3163ef24e4d2b052930a4524142ed495365591bd7e4d + [100%] 737.51 KB @ 874.3 MB/s +==> Extracting munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq from binary cache +==> munge: Successfully installed munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.02s. Relocate: 0.02s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq +==> Installing munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq [59/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e ==> Fetching file:///mirror/blobs/sha256/fe/fe85e316a6e7a4eeb764a7d76ec7385fa5a8edff5afd996502eb8431a2b87bb1 - [100%] 28.60 MB @ 461.3 GB/s + [100%] 28.60 MB @ 381.3 GB/s ==> Extracting re2c-3.1-axmwicsvaegxguyoex6hmu6irzrdis4j from binary cache ==> re2c: Successfully installed re2c-3.1-axmwicsvaegxguyoex6hmu6irzrdis4j Search: 0.00s. Fetch: 0.05s. Install: 0.61s. Extract: 0.53s. Relocate: 0.05s. Total: 0.65s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/re2c-3.1-axmwicsvaegxguyoex6hmu6irzrdis4j -==> Installing re2c-3.1-axmwicsvaegxguyoex6hmu6irzrdis4j [59/78] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e +==> Installing re2c-3.1-axmwicsvaegxguyoex6hmu6irzrdis4j [61/78] +==> Fetching file:///mirror/blobs/sha256/ec/ec1ddbbebff6f1e9c98c88a0a8c55f4ae992aec98e27894b028f0df6256c35cc + [100%] 14.82 KB @ 193.8 MB/s +==> Extracting python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o from binary cache +==> python-venv: Successfully installed python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.04s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o +==> Installing python-venv-1.0-essoyki3al5aam2wqamlejoclcd7jf6o [62/78] ==> Fetching file:///mirror/blobs/sha256/76/765ce3179ed21f8ff737269f5b252124b5b2c09de09da1e63b700f0e7ce364bd - [100%] 136.37 KB @ 463.9 MB/s + [100%] 136.37 KB @ 447.5 MB/s ==> Extracting json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes from binary cache ==> json-c: Successfully installed json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s + Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.04s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes -==> Installing json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes [62/78] -==> Fetching file:///mirror/blobs/sha256/7b/7b48104f7cc2412a9dff3163ef24e4d2b052930a4524142ed495365591bd7e4d - [100%] 737.51 KB @ 882.5 MB/s -==> Extracting munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq from binary cache -==> munge: Successfully installed munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.02s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq -==> Installing munge-0.5.15-itsnhnf3jn5ual4k7intv62hnu54gplq [63/78] -==> Fetching file:///mirror/blobs/sha256/e9/e9385bc06ccc9335669dfce96d50c968f72c2e1da765718ee6e473f9f7bf5ddd - [100%] 64.10 MB @ 411.3 GB/s -==> Extracting py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo from binary cache -==> py-pip: Successfully installed py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo - Search: 0.00s. Fetch: 0.01s. Install: 0.25s. Extract: 0.22s. Relocate: 0.01s. Total: 0.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo -==> Installing py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo [64/78] +==> Installing json-c-0.18-5viqezvbwekimujkx7dj3xc6qlwzmqes [63/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln ==> Fetching file:///mirror/blobs/sha256/ef/ef80e301ee4675fd1d094d92c6c89df1015826b1c9e2b7795a56892985076466 - [100%] 63.36 MB @ 351.3 GB/s + [100%] 63.36 MB @ 431.2 GB/s ==> Extracting ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm from binary cache ==> ninja: Successfully installed ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.07s. Relocate: 0.01s. Total: 0.12s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm ==> Installing ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm [65/78] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -==> Fetching file:///mirror/blobs/sha256/9d/9d92b1a661974058164b24df8bd193ceb34c3fe67fa51f4dc6125a6bc3ee9cb9 - [100%] 195.10 KB @ 551.8 MB/s -==> Extracting py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs from binary cache -==> py-wheel: Successfully installed py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.02s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs -==> Installing py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs [67/78] -==> Fetching file:///mirror/blobs/sha256/3c/3c06621b6a1b6eae5ddbf0f7f1012b8bfa4ec87c2c1ea59f41b5796904509914 - [100%] 62.98 MB @ 321.2 GB/s -==> Extracting py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r from binary cache -==> py-setuptools: Successfully installed py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r - Search: 0.00s. Fetch: 0.01s. Install: 0.23s. Extract: 0.20s. Relocate: 0.01s. Total: 0.24s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r -==> Installing py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r [68/78] +==> Fetching file:///mirror/blobs/sha256/e9/e9385bc06ccc9335669dfce96d50c968f72c2e1da765718ee6e473f9f7bf5ddd + [100%] 64.10 MB @ 401.2 GB/s +==> Extracting py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo from binary cache +==> py-pip: Successfully installed py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo + Search: 0.00s. Fetch: 0.01s. Install: 0.25s. Extract: 0.22s. Relocate: 0.01s. Total: 0.26s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo +==> Installing py-pip-25.1.1-hjc6yfd2ld4jnbcfet6xvykaudvxcpqo [66/78] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv ==> Fetching file:///mirror/blobs/sha256/4e/4e20d0b5baf38fc8161ec027fe61f1d13aff2944c9a29f77d4055d6e1e86797b - [100%] 206.80 KB @ 557.1 MB/s + [100%] 206.80 KB @ 526.0 MB/s ==> Extracting lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z from binary cache ==> lwgrp: Successfully installed lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.03s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z -==> Installing lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z [69/78] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv -==> Fetching file:///mirror/blobs/sha256/c2/c29415789f084e7cd6cc187c5ba7d9f21d853a2904022b388d0e79cfc44b9bb9 - [100%] 63.00 MB @ 401.2 GB/s -==> Extracting meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx from binary cache -==> meson: Successfully installed meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx - Search: 0.00s. Fetch: 0.01s. Install: 0.17s. Extract: 0.14s. Relocate: 0.01s. Total: 0.18s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx -==> Installing meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx [71/78] +==> Installing lwgrp-1.0.6-bms4pwx7whtr74fbz6idyyk5lbgpv72z [68/78] +==> Fetching file:///mirror/blobs/sha256/3c/3c06621b6a1b6eae5ddbf0f7f1012b8bfa4ec87c2c1ea59f41b5796904509914 + [100%] 62.98 MB @ 401.1 GB/s +==> Extracting py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r from binary cache +==> py-setuptools: Successfully installed py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r + Search: 0.00s. Fetch: 0.01s. Install: 0.23s. Extract: 0.20s. Relocate: 0.01s. Total: 0.24s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r +==> Installing py-setuptools-80.9.0-lnndrgestzj7yvxxmosjz35ocyelfw5r [69/78] +==> Fetching file:///mirror/blobs/sha256/9d/9d92b1a661974058164b24df8bd193ceb34c3fe67fa51f4dc6125a6bc3ee9cb9 + [100%] 195.10 KB @ 554.8 MB/s +==> Extracting py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs from binary cache +==> py-wheel: Successfully installed py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.02s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs +==> Installing py-wheel-0.45.1-hpfn7k7fkr5xsrlw6if6nj6n27a4jcrs [70/78] ==> Fetching file:///mirror/blobs/sha256/da/dab766c9f7eacbe404c98b078983fbc786e0753e60b66fa7aea02aa5d4fbb13b - [100%] 445.90 KB @ 728.9 MB/s + [100%] 445.90 KB @ 706.6 MB/s ==> Extracting dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot from binary cache ==> dtcmp: Successfully installed dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.01s. Relocate: 0.03s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot -==> Installing dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot [72/78] +==> Installing dtcmp-1.1.5-2kcmd2x76so5ites4co66qnkqukjenot [71/78] +==> Fetching file:///mirror/blobs/sha256/c2/c29415789f084e7cd6cc187c5ba7d9f21d853a2904022b388d0e79cfc44b9bb9 + [100%] 63.00 MB @ 461.2 GB/s +==> Extracting meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx from binary cache +==> meson: Successfully installed meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx + Search: 0.00s. Fetch: 0.01s. Install: 0.17s. Extract: 0.14s. Relocate: 0.01s. Total: 0.18s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx +==> Installing meson-1.8.5-muzyskyvwmojjs5n4yrw47b7gc4x7blx [72/78] ==> Fetching file:///mirror/blobs/sha256/ca/ca0d32fd119312ecd0f0c033989ac9375eaadaf248c7f962fdd000798bf36899 - [100%] 62.91 MB @ 351.2 GB/s + [100%] 62.91 MB @ 371.2 GB/s ==> Extracting glib-bootstrap-2.86.1-dcark7n2gmwnwuev2tl5qxvreqvzmohg from binary cache ==> glib-bootstrap: Successfully installed glib-bootstrap-2.86.1-dcark7n2gmwnwuev2tl5qxvreqvzmohg Search: 0.00s. Fetch: 0.01s. Install: 0.18s. Extract: 0.12s. Relocate: 0.04s. Total: 0.19s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-bootstrap-2.86.1-dcark7n2gmwnwuev2tl5qxvreqvzmohg ==> Installing glib-bootstrap-2.86.1-dcark7n2gmwnwuev2tl5qxvreqvzmohg [73/78] ==> Fetching file:///mirror/blobs/sha256/9d/9d2712050063c20efa296dc725ff838b0c1fb390ef8de2324059f650e30194c6 - [100%] 703.32 KB @ 835.7 MB/s + [100%] 703.32 KB @ 885.6 MB/s ==> Extracting gobject-introspection-1.86.0-zktpj7scqi6ts5hv2qc3pjhpg5ll6xam from binary cache ==> gobject-introspection: Successfully installed gobject-introspection-1.86.0-zktpj7scqi6ts5hv2qc3pjhpg5ll6xam Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.05s. Relocate: 0.04s. Total: 0.12s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gobject-introspection-1.86.0-zktpj7scqi6ts5hv2qc3pjhpg5ll6xam ==> Installing gobject-introspection-1.86.0-zktpj7scqi6ts5hv2qc3pjhpg5ll6xam [74/78] ==> Fetching file:///mirror/blobs/sha256/46/46f8e18423962bf22ca352b9ae8668bd14fee258bd7dfb325ea74f13a0fc448b - [100%] 67.61 MB @ 411.3 GB/s + [100%] 67.61 MB @ 421.3 GB/s ==> Extracting glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf from binary cache ==> glib: Successfully installed glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf Search: 0.00s. Fetch: 0.02s. Install: 0.34s. Extract: 0.27s. Relocate: 0.04s. Total: 0.36s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf ==> Installing glib-2.86.1-arsxi4dynj54sx2h3mcryrco7pml4yhf [75/78] ==> Fetching file:///mirror/blobs/sha256/50/503cc5575e706d763d3e97d86c60f65e278f7956934c2d58a6e662fc1900d504 - [100%] 128.82 MB @ 401.4 GB/s + [100%] 128.82 MB @ 501.4 GB/s ==> Extracting slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 from binary cache ==> slurm: Successfully installed slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 - Search: 0.00s. Fetch: 0.19s. Install: 2.77s. Extract: 2.57s. Relocate: 0.17s. Total: 2.96s + Search: 0.00s. Fetch: 0.19s. Install: 2.79s. Extract: 2.59s. Relocate: 0.16s. Total: 2.98s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 ==> Installing slurm-25-05-1-1-tc55ttmephfx5nx3s7o7lem6w2hbke34 [76/78] ==> Fetching file:///mirror/blobs/sha256/db/db4b142730ea960904b7d3bb553ffcecbd5c026e886dd14d21c5df2c15c13112 - [100%] 78.25 KB @ 368.8 MB/s + [100%] 78.25 KB @ 339.0 MB/s ==> Extracting libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g from binary cache ==> libyogrt: Successfully installed libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.01s. Relocate: 0.04s. Total: 0.09s + Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.01s. Relocate: 0.04s. Total: 0.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g ==> Installing libyogrt-1.35-ylblit5vwtdqn2zoc7ghzfmmf46bgm5g [77/78] ==> Fetching file:///mirror/blobs/sha256/a3/a31530f079789b885e048110b4658d17b1c4c0eadbaab2058b20c349a62a4481 - [100%] 61.25 MB @ 391.0 GB/s + [100%] 61.25 MB @ 991.3 MB/s ==> Extracting scr-2.0.0-f57s4noxfkoiizusmhjyjue2h3fn2yrc from binary cache ==> scr: Successfully installed scr-2.0.0-f57s4noxfkoiizusmhjyjue2h3fn2yrc Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.03s. Relocate: 0.07s. Total: 0.15s diff --git a/outputs/environments/env-install-1.out b/outputs/environments/env-install-1.out index 16601a5ac..64baf4ea4 100644 --- a/outputs/environments/env-install-1.out +++ b/outputs/environments/env-install-1.out @@ -58,43 +58,43 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln ==> Fetching file:///mirror/blobs/sha256/e8/e8e9738ee974efbf1676f64752e74a7548f6d7a2ef89385f32170c76234007e2 - [100%] 38.92 MB @ 351.3 GB/s + [100%] 38.92 MB @ 421.3 GB/s ==> Extracting trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv from binary cache ==> trilinos: Successfully installed trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv - Search: 0.00s. Fetch: 0.23s. Install: 1.57s. Extract: 1.40s. Relocate: 0.15s. Total: 1.80s + Search: 0.00s. Fetch: 0.23s. Install: 1.54s. Extract: 1.36s. Relocate: 0.15s. Total: 1.77s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv ==> Installing trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv [37/37] ==> Updating view at /home/spack/spack/var/spack/environments/myproject/.spack-env/view diff --git a/outputs/environments/incremental-1.out b/outputs/environments/incremental-1.out index a040bbf5a..badf3808d 100644 --- a/outputs/environments/incremental-1.out +++ b/outputs/environments/incremental-1.out @@ -1,5 +1,5 @@ $ spack env activate --temp -==> Created and activated temporary environment in /tmp/spack-lgjq9wei +==> Created and activated temporary environment in /tmp/spack-vsjhw26x $ spack install --add python ==> Concretized 1 spec [+] pazbuxs python@3.14.0+bz2+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 @@ -35,24 +35,24 @@ $ spack install --add python [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q -==> Updating view at /tmp/spack-xoinqh3g/.spack-env/view +==> Updating view at /tmp/spack-dsf2z9ol/.spack-env/view diff --git a/outputs/environments/incremental-2.out b/outputs/environments/incremental-2.out index 5a430f5b9..c2766380d 100644 --- a/outputs/environments/incremental-2.out +++ b/outputs/environments/incremental-2.out @@ -1,5 +1,5 @@ $ spack add py-numpy@1.20 -==> Adding py-numpy@1.20 to environment /tmp/spack-xoinqh3g +==> Adding py-numpy@1.20 to environment /tmp/spack-dsf2z9ol $ spack concretize -f ==> Warning: using "python@3.9.25" which is a deprecated version ==> Concretized 2 specs: @@ -62,4 +62,4 @@ $ spack concretize -f [+] yzaocbs ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 [+] zk6kesh ^zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -==> Updating view at /tmp/spack-xoinqh3g/.spack-env/view +==> Updating view at /tmp/spack-dsf2z9ol/.spack-env/view diff --git a/outputs/environments/install-independent-1.out b/outputs/environments/install-independent-1.out index eb6b22108..88037cdb3 100644 --- a/outputs/environments/install-independent-1.out +++ b/outputs/environments/install-independent-1.out @@ -56,22 +56,22 @@ $ spack install [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 diff --git a/outputs/packaging/build-output.out b/outputs/packaging/build-output.out index d2b55ec05..207fb9e78 100644 --- a/outputs/packaging/build-output.out +++ b/outputs/packaging/build-output.out @@ -1,6 +1,6 @@ $ cat /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-build-out.txt ==> tutorial-mpileaks: Executing phase: 'autoreconf' -==> [2025-11-17-05:40:51.004682] '/home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz/bin/autoreconf' '--install' '--verbose' '--force' +==> [2025-11-17-08:49:35.696283] '/home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz/bin/autoreconf' '--install' '--verbose' '--force' autoreconf: export WARNINGS= autoreconf: Entering directory '.' autoreconf: configure.ac: not using Gettext @@ -43,13 +43,13 @@ autoreconf: 'config/config.sub' is updated autoreconf: 'config/config.guess' is updated autoreconf: Leaving directory '.' ==> tutorial-mpileaks: Executing phase: 'configure' -==> [2025-11-17-05:40:54.941364] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src'] ['configure'] -==> [2025-11-17-05:40:54.942190] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src'] ['configure'] -==> [2025-11-17-05:40:54.942708] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*if test x-L = )("\$p" \|\|\s*)$"] -==> [2025-11-17-05:40:54.962464] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*test x-R = )("\$p")(; then\s*)$"] -==> [2025-11-17-05:40:54.981616] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*test \$p = "-R")(; then\s*)$"] -==> [2025-11-17-05:40:55.000412] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "lt_cv_apple_cc_single_mod=no"] -==> [2025-11-17-05:40:55.022116] '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure' '--prefix=/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2' +==> [2025-11-17-08:49:39.608432] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src'] ['configure'] +==> [2025-11-17-08:49:39.609278] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src'] ['configure'] +==> [2025-11-17-08:49:39.609806] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*if test x-L = )("\$p" \|\|\s*)$"] +==> [2025-11-17-08:49:39.629348] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*test x-R = )("\$p")(; then\s*)$"] +==> [2025-11-17-08:49:39.648283] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "^(\s*test \$p = "-R")(; then\s*)$"] +==> [2025-11-17-08:49:39.667129] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure [replacing "lt_cv_apple_cc_single_mod=no"] +==> [2025-11-17-08:49:39.686908] '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2/spack-src/configure' '--prefix=/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-7eebjmaajx5lz6xmhlntk5lk3he7yxp2' checking metadata... no checking installation directory variables... yes checking for a BSD-compatible install... /usr/bin/install -c diff --git a/outputs/packaging/checksum-mpileaks-1.out b/outputs/packaging/checksum-mpileaks-1.out index 7e499787d..c0ed114b7 100644 --- a/outputs/packaging/checksum-mpileaks-1.out +++ b/outputs/packaging/checksum-mpileaks-1.out @@ -1,7 +1,7 @@ $ spack checksum tutorial-mpileaks 1.0 ==> Found 1 version of tutorial-mpileaks ==> Fetching https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz - [100%] 339.70 KB @ 4.5 MB/s + [100%] 339.70 KB @ 36.6 MB/s version("1.0", sha256="24c706591bdcd84541e19389a9314813ce848035ee877e213d528b184f4b43f9") diff --git a/outputs/packaging/create.out b/outputs/packaging/create.out index 99d4c50be..572593a47 100644 --- a/outputs/packaging/create.out +++ b/outputs/packaging/create.out @@ -1,7 +1,7 @@ $ spack create --name tutorial-mpileaks --namespace tutorial https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz ==> Using specified package name: 'tutorial-mpileaks' ==> Fetching https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz - [100%] 339.70 KB @ 4.7 MB/s + [100%] 339.70 KB @ 37.8 MB/s ==> This package looks like it uses the autoreconf build system ==> Created template for tutorial-mpileaks package ==> Created package file: /home/spack/my_pkgs/spack_repo/tutorial/packages/tutorial_mpileaks/package.py diff --git a/outputs/packaging/install-mpileaks-1.out b/outputs/packaging/install-mpileaks-1.out index acf4cdff6..886a31d8f 100644 --- a/outputs/packaging/install-mpileaks-1.out +++ b/outputs/packaging/install-mpileaks-1.out @@ -3,16 +3,16 @@ $ spack install tutorial-mpileaks [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt @@ -20,7 +20,7 @@ $ spack install tutorial-mpileaks ==> No binary for tutorial-mpileaks-1.0-f6zjbzmtbwk2ng2pdw5mdv6cwfy4xlos found: installing from source ==> Installing tutorial-mpileaks-1.0-f6zjbzmtbwk2ng2pdw5mdv6cwfy4xlos [19/19] ==> Fetching https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz - [100%] 339.70 KB @ 4.6 MB/s + [100%] 339.70 KB @ 28.1 MB/s ==> No patches needed for tutorial-mpileaks ==> tutorial-mpileaks: Executing phase: 'autoreconf' ==> tutorial-mpileaks: Executing phase: 'configure' diff --git a/outputs/packaging/install-mpileaks-2.out b/outputs/packaging/install-mpileaks-2.out index e236c6694..74f671e04 100644 --- a/outputs/packaging/install-mpileaks-2.out +++ b/outputs/packaging/install-mpileaks-2.out @@ -3,90 +3,90 @@ $ spack install tutorial-mpileaks [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea ==> Fetching file:///mirror/blobs/sha256/cf/cfcf4c5d32808d1fe4fc84dd570eb68e5758719a5662ae042f77fe4541783be8 - [100%] 15.09 MB @ 401.3 GB/s + [100%] 15.09 MB @ 451.3 GB/s ==> Extracting boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri from binary cache ==> boost: Successfully installed boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri - Search: 0.00s. Fetch: 0.19s. Install: 2.55s. Extract: 2.50s. Relocate: 0.01s. Total: 2.74s + Search: 0.00s. Fetch: 0.19s. Install: 2.53s. Extract: 2.48s. Relocate: 0.02s. Total: 2.72s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri -==> Installing boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri [11/52] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +==> Installing boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri [5/52] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +==> Fetching file:///mirror/blobs/sha256/51/5178c570178758ff52902bf249dccd43196d5f216e872874534874ec745bed70 + [100%] 730.30 KB @ 875.7 MB/s +==> Extracting libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt from binary cache +==> libiberty: Successfully installed libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt +==> Installing libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt [10/52] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Fetching file:///mirror/blobs/sha256/51/5178c570178758ff52902bf249dccd43196d5f216e872874534874ec745bed70 - [100%] 730.30 KB @ 924.0 MB/s -==> Extracting libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt from binary cache -==> libiberty: Successfully installed libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt -==> Installing libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt [27/52] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -==> Fetching file:///mirror/blobs/sha256/7d/7dc5d2212ed7dec228a44e43949ad369d55c87768b8051886d39131e893bcf05 - [100%] 607.33 KB @ 828.1 MB/s -==> Extracting libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn from binary cache -==> libdwarf: Successfully installed libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn -==> Installing libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn [42/52] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 ==> Fetching file:///mirror/blobs/sha256/17/17669d34e350ff75504670ca8f5534fdad750277d0a21eeeece7e9c6327dbc99 - [100%] 556.90 KB @ 803.8 MB/s + [100%] 556.90 KB @ 728.1 MB/s ==> Extracting intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask from binary cache ==> intel-tbb: Successfully installed intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.04s. Relocate: 0.02s. Total: 0.10s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask -==> Installing intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [43/52] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau +==> Installing intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [41/52] +==> Fetching file:///mirror/blobs/sha256/7d/7dc5d2212ed7dec228a44e43949ad369d55c87768b8051886d39131e893bcf05 + [100%] 607.33 KB @ 783.8 MB/s +==> Extracting libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn from binary cache +==> libdwarf: Successfully installed libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn + Search: 0.00s. Fetch: 0.01s. Install: 0.33s. Extract: 0.02s. Relocate: 0.01s. Total: 0.34s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +==> Installing libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn [42/52] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu ==> Fetching file:///mirror/blobs/sha256/6a/6aab55f778d86c103cfd65fed4a41333a1a883b47511b81179882619b3d04d7d - [100%] 67.32 MB @ 411.3 GB/s + [100%] 67.32 MB @ 451.3 GB/s ==> Extracting dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv from binary cache ==> dyninst: Successfully installed dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv Search: 0.00s. Fetch: 0.02s. Install: 0.27s. Extract: 0.18s. Relocate: 0.05s. Total: 0.29s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv -==> Installing dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv [47/52] +==> Installing dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv [45/52] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln ==> Fetching file:///mirror/blobs/sha256/64/647c4eae7a6c723c3cb0a370c327ff8d20cec5d5541ecffff7cf90b0e687de87 - [100%] 81.78 KB @ 345.1 MB/s + [100%] 81.78 KB @ 327.0 MB/s ==> Extracting adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 from binary cache ==> adept-utils: Successfully installed adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 - Search: 0.00s. Fetch: 0.01s. Install: 0.33s. Extract: 0.01s. Relocate: 0.28s. Total: 0.34s + Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.01s. Relocate: 0.03s. Total: 0.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 ==> Installing adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 [50/52] ==> Fetching file:///mirror/blobs/sha256/47/475ecd5fda133e21df5896983e83943d300f18ac79a47b097de6651c65881fa2 - [100%] 126.03 KB @ 448.7 MB/s + [100%] 126.03 KB @ 457.3 MB/s ==> Extracting callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i from binary cache ==> callpath: Successfully installed callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.01s. Relocate: 0.04s. Total: 0.10s diff --git a/outputs/packaging/install-mpileaks-3.out b/outputs/packaging/install-mpileaks-3.out index ed5ebfe96..60f9f13f0 100644 --- a/outputs/packaging/install-mpileaks-3.out +++ b/outputs/packaging/install-mpileaks-3.out @@ -3,45 +3,45 @@ $ spack install tutorial-mpileaks [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i @@ -54,5 +54,5 @@ $ spack install tutorial-mpileaks ==> tutorial-mpileaks: Executing phase: 'build' ==> tutorial-mpileaks: Executing phase: 'install' ==> tutorial-mpileaks: Successfully installed tutorial-mpileaks-1.0-x3pl4siclvab7eh23qt4byzurpknamjh - Stage: 0.01s. Autoreconf: 3.87s. Configure: 3.05s. Build: 8.43s. Install: 0.20s. Post-install: 0.03s. Total: 15.65s + Stage: 0.01s. Autoreconf: 3.88s. Configure: 3.05s. Build: 8.01s. Install: 0.19s. Post-install: 0.03s. Total: 15.25s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-x3pl4siclvab7eh23qt4byzurpknamjh diff --git a/outputs/packaging/install-mpileaks-4.out b/outputs/packaging/install-mpileaks-4.out index eb0149918..8d33a9b97 100644 --- a/outputs/packaging/install-mpileaks-4.out +++ b/outputs/packaging/install-mpileaks-4.out @@ -3,45 +3,45 @@ $ spack install --verbose tutorial-mpileaks stackstart=4 [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i @@ -50,7 +50,7 @@ $ spack install --verbose tutorial-mpileaks stackstart=4 ==> Using cached archive: /home/spack/spack/var/spack/cache/_source-cache/archive/24/24c706591bdcd84541e19389a9314813ce848035ee877e213d528b184f4b43f9.tar.gz ==> No patches needed for tutorial-mpileaks ==> tutorial-mpileaks: Executing phase: 'autoreconf' -==> [2025-11-17-05:42:23.533570] '/home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz/bin/autoreconf' '--install' '--verbose' '--force' +==> [2025-11-17-08:51:08.198445] '/home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz/bin/autoreconf' '--install' '--verbose' '--force' autoreconf: export WARNINGS= autoreconf: Entering directory '.' autoreconf: configure.ac: not using Gettext @@ -93,13 +93,13 @@ autoreconf: 'config/config.sub' is updated autoreconf: 'config/config.guess' is updated autoreconf: Leaving directory '.' ==> tutorial-mpileaks: Executing phase: 'configure' -==> [2025-11-17-05:42:27.430249] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['configure'] -==> [2025-11-17-05:42:27.431109] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['configure'] -==> [2025-11-17-05:42:27.431709] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*if test x-L = )("\$p" \|\|\s*)$"] -==> [2025-11-17-05:42:27.451926] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*test x-R = )("\$p")(; then\s*)$"] -==> [2025-11-17-05:42:27.471431] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*test \$p = "-R")(; then\s*)$"] -==> [2025-11-17-05:42:27.490846] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "lt_cv_apple_cc_single_mod=no"] -==> [2025-11-17-05:42:27.512301] '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure' '--prefix=/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni' '--with-adept-utils=/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4' '--with-callpath=/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i' '--with-stack-start-c=4' '--with-stack-start-fortran=4' +==> [2025-11-17-08:51:12.098928] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['configure'] +==> [2025-11-17-08:51:12.099725] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['configure'] +==> [2025-11-17-08:51:12.100316] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*if test x-L = )("\$p" \|\|\s*)$"] +==> [2025-11-17-08:51:12.120929] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*test x-R = )("\$p")(; then\s*)$"] +==> [2025-11-17-08:51:12.140385] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "^(\s*test \$p = "-R")(; then\s*)$"] +==> [2025-11-17-08:51:12.160499] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure [replacing "lt_cv_apple_cc_single_mod=no"] +==> [2025-11-17-08:51:12.181127] '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/configure' '--prefix=/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni' '--with-adept-utils=/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4' '--with-callpath=/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i' '--with-stack-start-c=4' '--with-stack-start-fortran=4' checking metadata... no checking installation directory variables... yes checking for a BSD-compatible install... /usr/bin/install -c @@ -210,15 +210,15 @@ config.status: creating scripts/srun-mpileaksf config.status: creating config/config.h config.status: executing depfiles commands config.status: executing libtool commands -==> [2025-11-17-05:42:30.454896] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['libtool'] -==> [2025-11-17-05:42:30.455665] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['libtool'] -==> [2025-11-17-05:42:30.456758] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^wl=""$"] -==> [2025-11-17-05:42:30.472023] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] -==> [2025-11-17-05:42:30.476270] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] -==> [2025-11-17-05:42:30.482972] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] -==> [2025-11-17-05:42:30.489381] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] +==> [2025-11-17-08:51:15.123274] Find (max depth = None): ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['libtool'] +==> [2025-11-17-08:51:15.124052] Find complete: ['/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src'] ['libtool'] +==> [2025-11-17-08:51:15.125172] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^wl=""$"] +==> [2025-11-17-08:51:15.140438] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] +==> [2025-11-17-08:51:15.144770] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] +==> [2025-11-17-08:51:15.151355] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] +==> [2025-11-17-08:51:15.157731] FILTER FILE: /tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/libtool [replacing "^pic_flag=""$"] ==> tutorial-mpileaks: Executing phase: 'build' -==> [2025-11-17-05:42:30.507209] '/home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 'V=1' +==> [2025-11-17-08:51:15.175687] '/home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 'V=1' Making all in scripts make[1]: Entering directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/scripts' make[1]: Nothing to be done for 'all'. @@ -231,20 +231,12 @@ make[1]: Entering directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileak /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT errhandler.lo -MD -MP -MF .deps/errhandler.Tpo -c -o errhandler.lo errhandler.cpp libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT mpileaks.lo -MD -MP -MF .deps/mpileaks.Tpo -c mpileaks.cpp -fPIC -DPIC -o .libs/mpileaks.o libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT comm.lo -MD -MP -MF .deps/comm.Tpo -c comm.cpp -fPIC -DPIC -o .libs/comm.o -libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT errhandler.lo -MD -MP -MF .deps/errhandler.Tpo -c errhandler.cpp -fPIC -DPIC -o .libs/errhandler.o libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT datatype.lo -MD -MP -MF .deps/datatype.Tpo -c datatype.cpp -fPIC -DPIC -o .libs/datatype.o +libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT errhandler.lo -MD -MP -MF .deps/errhandler.Tpo -c errhandler.cpp -fPIC -DPIC -o .libs/errhandler.o errhandler.cpp: In function 'int MPI_Errhandler_create(void (*)(ompi_communicator_t**, int*, ...), ompi_errhandler_t**)': errhandler.cpp:33:34: warning: 'int PMPI_Errhandler_create(void (*)(ompi_communicator_t**, int*, ...), ompi_errhandler_t**)' is deprecated: PMPI_Errhandler_create was removed in MPI-3.0. Use PMPI_Comm_create_errhandler instead. continuing... [-Wdeprecated-declarations] 33 | int rc = PMPI_Errhandler_create(function, eh); | ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -datatype.cpp: In function 'int MPI_Type_hvector(int, int, MPI_Aint, MPI_Datatype, ompi_datatype_t**)': -datatype.cpp:60:29: warning: 'int PMPI_Type_hvector(int, int, MPI_Aint, MPI_Datatype, ompi_datatype_t**)' is deprecated: PMPI_Type_hvector was removed in MPI-3.0. Use PMPI_Type_create_hvector instead. continuing... [-Wdeprecated-declarations] - 60 | int rc = PMPI_Type_hvector(count, blocklength, stride, oldtype, newtype); - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from datatype.cpp:10: -/home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include/mpi.h:3148:20: note: declared here - 3148 | OMPI_DECLSPEC int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, - | ^~~~~~~~~~~~~~~~~ In file included from errhandler.cpp:10: /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include/mpi.h:3122:20: note: declared here 3122 | OMPI_DECLSPEC int PMPI_Errhandler_create(MPI_Handler_function *function, @@ -257,6 +249,14 @@ In file included from errhandler.cpp:10: /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include/mpi.h:3127:20: note: declared here 3127 | OMPI_DECLSPEC int PMPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler) | ^~~~~~~~~~~~~~~~~~~ +datatype.cpp: In function 'int MPI_Type_hvector(int, int, MPI_Aint, MPI_Datatype, ompi_datatype_t**)': +datatype.cpp:60:29: warning: 'int PMPI_Type_hvector(int, int, MPI_Aint, MPI_Datatype, ompi_datatype_t**)' is deprecated: PMPI_Type_hvector was removed in MPI-3.0. Use PMPI_Type_create_hvector instead. continuing... [-Wdeprecated-declarations] + 60 | int rc = PMPI_Type_hvector(count, blocklength, stride, oldtype, newtype); + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from datatype.cpp:10: +/home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include/mpi.h:3148:20: note: declared here + 3148 | OMPI_DECLSPEC int PMPI_Type_hvector(int count, int blocklength, MPI_Aint stride, + | ^~~~~~~~~~~~~~~~~ datatype.cpp: In function 'int MPI_Type_hindexed(int, int*, MPI_Aint*, MPI_Datatype, ompi_datatype_t**)': datatype.cpp:78:30: warning: 'int PMPI_Type_hindexed(int, int*, MPI_Aint*, MPI_Datatype, ompi_datatype_t**)' is deprecated: PMPI_Type_hindexed was removed in MPI-3.0. Use PMPI_Type_create_hindexed instead. continuing... [-Wdeprecated-declarations] 78 | int rc = PMPI_Type_hindexed(count, array_of_blocklengths, array_of_displacements, @@ -278,20 +278,20 @@ In file included from datatype.cpp:10: 3160 | OMPI_DECLSPEC int PMPI_Type_struct(int count, int array_of_blocklengths[], | ^~~~~~~~~~~~~~~~ libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT errhandler.lo -MD -MP -MF .deps/errhandler.Tpo -c errhandler.cpp -o errhandler.o >/dev/null 2>&1 -libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT datatype.lo -MD -MP -MF .deps/datatype.Tpo -c datatype.cpp -o datatype.o >/dev/null 2>&1 libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT mpileaks.lo -MD -MP -MF .deps/mpileaks.Tpo -c mpileaks.cpp -o mpileaks.o >/dev/null 2>&1 +libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT datatype.lo -MD -MP -MF .deps/datatype.Tpo -c datatype.cpp -o datatype.o >/dev/null 2>&1 libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT comm.lo -MD -MP -MF .deps/comm.Tpo -c comm.cpp -o comm.o >/dev/null 2>&1 mv -f .deps/errhandler.Tpo .deps/errhandler.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT fileio.lo -MD -MP -MF .deps/fileio.Tpo -c -o fileio.lo fileio.cpp +mv -f .deps/mpileaks.Tpo .deps/mpileaks.Plo libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT fileio.lo -MD -MP -MF .deps/fileio.Tpo -c fileio.cpp -fPIC -DPIC -o .libs/fileio.o -mv -f .deps/datatype.Tpo .deps/datatype.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT group.lo -MD -MP -MF .deps/group.Tpo -c -o group.lo group.cpp -mv -f .deps/mpileaks.Tpo .deps/mpileaks.Plo +mv -f .deps/datatype.Tpo .deps/datatype.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT info.lo -MD -MP -MF .deps/info.Tpo -c -o info.lo info.cpp -libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT group.lo -MD -MP -MF .deps/group.Tpo -c group.cpp -fPIC -DPIC -o .libs/group.o -libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT info.lo -MD -MP -MF .deps/info.Tpo -c info.cpp -fPIC -DPIC -o .libs/info.o mv -f .deps/comm.Tpo .deps/comm.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT keyval.lo -MD -MP -MF .deps/keyval.Tpo -c -o keyval.lo keyval.cpp +libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT group.lo -MD -MP -MF .deps/group.Tpo -c group.cpp -fPIC -DPIC -o .libs/group.o +libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT info.lo -MD -MP -MF .deps/info.Tpo -c info.cpp -fPIC -DPIC -o .libs/info.o libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT keyval.lo -MD -MP -MF .deps/keyval.Tpo -c keyval.cpp -fPIC -DPIC -o .libs/keyval.o keyval.cpp: In function 'int MPI_Keyval_create(int (*)(MPI_Comm, int, void*, void*, void*, int*), int (*)(MPI_Comm, int, void*, void*), int*, void*)': keyval.cpp:38:30: warning: 'int PMPI_Keyval_create(int (*)(MPI_Comm, int, void*, void*, void*, int*), int (*)(MPI_Comm, int, void*, void*), int*, void*)' is deprecated: PMPI_Keyval_create was deprecated in MPI-2.0; use PMPI_Comm_create_keyval instead. [-Wdeprecated-declarations] @@ -319,9 +319,9 @@ libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper- mv -f .deps/info.Tpo .deps/info.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT op.lo -MD -MP -MF .deps/op.Tpo -c -o op.lo op.cpp libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT op.lo -MD -MP -MF .deps/op.Tpo -c op.cpp -fPIC -DPIC -o .libs/op.o +mv -f .deps/keyval.Tpo .deps/keyval.Plo mv -f .deps/group.Tpo .deps/group.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT request.lo -MD -MP -MF .deps/request.Tpo -c -o request.lo request.cpp -mv -f .deps/keyval.Tpo .deps/keyval.Plo /bin/bash ../libtool --tag=CXX --mode=compile /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT win.lo -MD -MP -MF .deps/win.Tpo -c -o win.lo win.cpp libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT request.lo -MD -MP -MF .deps/request.Tpo -c request.cpp -fPIC -DPIC -o .libs/request.o libtool: compile: /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2/libexec/spack/gcc/g++ -DHAVE_CONFIG_H -I. -I../config -DHAVE_CONFIG_H -I. -I../config -I../src -I../config -g -O2 -I//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4/include -I/home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i/include -g -O2 -MT win.lo -MD -MP -MF .deps/win.Tpo -c win.cpp -fPIC -DPIC -o .libs/win.o @@ -347,7 +347,7 @@ make[1]: Entering directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileak make[1]: Nothing to be done for 'all-am'. make[1]: Leaving directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src' ==> tutorial-mpileaks: Executing phase: 'install' -==> [2025-11-17-05:42:38.711669] '/home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 'install' +==> [2025-11-17-08:51:23.274613] '/home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma/bin/make' '-j4' 'install' Making install in scripts make[1]: Entering directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/scripts' make[2]: Entering directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src/scripts' @@ -403,8 +403,8 @@ make[2]: Nothing to be done for 'install-exec-am'. /usr/bin/install -c -m 644 README '/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/share/mpileaks' make[2]: Leaving directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src' make[1]: Leaving directory '/tmp/spack/spack-stage/spack-stage-tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni/spack-src' -==> [2025-11-17-05:42:38.902974] Find (max depth = None): ['/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni'] ['*.la'] -==> [2025-11-17-05:42:38.903774] Find complete: ['/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni'] ['*.la'] +==> [2025-11-17-08:51:23.466736] Find (max depth = None): ['/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni'] ['*.la'] +==> [2025-11-17-08:51:23.467549] Find complete: ['/home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni'] ['*.la'] ==> tutorial-mpileaks: Successfully installed tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni - Stage: 0.01s. Autoreconf: 3.88s. Configure: 3.06s. Build: 8.19s. Install: 0.19s. Post-install: 0.03s. Total: 15.45s + Stage: 0.01s. Autoreconf: 3.89s. Configure: 3.06s. Build: 8.09s. Install: 0.19s. Post-install: 0.03s. Total: 15.35s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-xf6kleti25iz2kbec7b6rfiemhs2l4ni diff --git a/outputs/packaging/install-mpileaks-5.out b/outputs/packaging/install-mpileaks-5.out index db1fdc0b9..9fae40d43 100644 --- a/outputs/packaging/install-mpileaks-5.out +++ b/outputs/packaging/install-mpileaks-5.out @@ -6,45 +6,45 @@ $ spack install --test=root tutorial-mpileaks [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/callpath-1.0.4-p4i3pshhj3wzew2fkxna7sbujfk5pf4i diff --git a/outputs/packaging/install-mpileaks-6.out b/outputs/packaging/install-mpileaks-6.out index 34af6e61f..a7f59d488 100644 --- a/outputs/packaging/install-mpileaks-6.out +++ b/outputs/packaging/install-mpileaks-6.out @@ -3,44 +3,44 @@ $ spack install --test=root tutorial-mpileaks [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/boost-1.72.0-3bt6bi5q4j5r5yj7wcplgfyzr4t7ffri +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiberty-2.41-wz2npe3qsm7j3arf5s4a6ccduutolyyt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libdwarf-2.1.0-l4t7fu7gmhr2lxu76fcwflhqx2cppoxn +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/intel-tbb-2022.3.0-rbf737wu37dt3e6ytiro4d2qo7vbyask [+] /home/spack/spack/opt/spack/linux-x86_64_v3/elfutils-0.193-brbwl6lkh323duhprbcxlmwwk7zz2cs2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/dyninst-13.0.0-jiygq6syjsmk6cfoeznnjq5aupwzphqv +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [+] /home/spack/spack/opt/spack/linux-x86_64_v3/adept-utils-1.0.1-bkfrcjldboplodum7ncujznagdqmdjz4 @@ -54,5 +54,5 @@ $ spack install --test=root tutorial-mpileaks ==> tutorial-mpileaks: Executing phase: 'build' ==> tutorial-mpileaks: Executing phase: 'install' ==> tutorial-mpileaks: Successfully installed tutorial-mpileaks-1.0-lrsybksvdpn7h4pzxipmmuark6hybcm6 - Stage: 0.01s. Autoreconf: 3.88s. Configure: 3.03s. Build: 8.22s. Install: 0.24s. Post-install: 0.03s. Total: 15.47s + Stage: 0.01s. Autoreconf: 3.85s. Configure: 3.00s. Build: 8.22s. Install: 0.24s. Post-install: 0.03s. Total: 15.42s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tutorial-mpileaks-1.0-lrsybksvdpn7h4pzxipmmuark6hybcm6 diff --git a/outputs/packaging/repo-config.out b/outputs/packaging/repo-config.out index beeb06286..61c77be2a 100644 --- a/outputs/packaging/repo-config.out +++ b/outputs/packaging/repo-config.out @@ -1,7 +1,6 @@ $ spack config get repos repos: + tutorial: /home/spack/my_pkgs/spack_repo/tutorial builtin: - tag: v2025.11.0 git: https://github.com/spack/spack-packages.git branch: releases/v2025.11 - tutorial: /home/spack/my_pkgs/spack_repo/tutorial diff --git a/outputs/packaging/repo-list.out b/outputs/packaging/repo-list.out index 38693ce3d..2b3890d1c 100644 --- a/outputs/packaging/repo-list.out +++ b/outputs/packaging/repo-list.out @@ -1,3 +1,3 @@ $ spack repo list -[+] builtin v2.2 /home/spack/.spack/package_repos/fncqgg4/repos/spack_repo/builtin [+] tutorial v2.4 /home/spack/my_pkgs/spack_repo/tutorial +[+] builtin v2.2 /home/spack/.spack/package_repos/fncqgg4/repos/spack_repo/builtin diff --git a/outputs/stacks/concretize-0.out b/outputs/stacks/concretize-0.out index 07d3b7a5c..2c3966f3f 100644 --- a/outputs/stacks/concretize-0.out +++ b/outputs/stacks/concretize-0.out @@ -91,348 +91,348 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr ==> Fetching file:///mirror/blobs/sha256/36/36172444f4f2bb59d9c46d83a54e80f6b53f70ab5768074e9205b1c1b87fc873 - [100%] 19.80 MB @ 411.2 GB/s + [100%] 19.80 MB @ 401.3 GB/s ==> Extracting gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed from binary cache ==> gcc-runtime: Successfully installed gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed Search: 0.00s. Fetch: 0.22s. Install: 0.49s. Extract: 0.40s. Relocate: 0.06s. Total: 0.71s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed ==> Installing gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed [22/68] -==> Fetching file:///mirror/blobs/sha256/f3/f31bb9ea0b55f915a9d6adf2e586d545541104e33e7635a62a86ca71b61ebcc6 - [100%] 62.16 MB @ 391.2 GB/s -==> Extracting libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly from binary cache -==> libiconv: Successfully installed libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly -==> Installing libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly [23/68] -==> Fetching file:///mirror/blobs/sha256/58/58598af6ef3e490496ac23b2deb5734aa393484b5d18dc1035cab0bd3c9be2ae - [100%] 61.83 MB @ 401.1 GB/s -==> Extracting xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx from binary cache -==> xz: Successfully installed xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx - Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.07s. Relocate: 0.01s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx -==> Installing xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx [24/68] -==> Fetching file:///mirror/blobs/sha256/86/865d78f9fc5654ff92ec4a1d58beea89732ebc1d7a0f516611fb038dd8f6b97a - [100%] 61.56 MB @ 401.1 GB/s -==> Extracting zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw from binary cache -==> zstd: Successfully installed zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.04s. Relocate: 0.01s. Total: 0.13s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw -==> Installing zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw [25/68] ==> Fetching file:///mirror/blobs/sha256/86/862c573b5bef92d895569fa027e03913df8fff50fa9490b29faec83668897933 - [100%] 63.82 MB @ 951.1 MB/s + [100%] 63.82 MB @ 391.2 GB/s ==> Extracting util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq from binary cache ==> util-linux-uuid: Successfully installed util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.10s. Relocate: 0.01s. Total: 0.15s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq -==> Installing util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq [26/68] -==> Fetching file:///mirror/blobs/sha256/ff/ff0044f4698c048ab4a225c71b0e7e5d8c6c902d4eeee7010343dbad8803b5cf - [100%] 93.01 KB @ 399.7 MB/s -==> Extracting libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd from binary cache -==> libffi: Successfully installed libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd +==> Installing util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq [23/68] +==> Fetching file:///mirror/blobs/sha256/41/41f2130514252891e6c314cecaf4a52055b27d244fb7101864dd61d1a2087804 + [100%] 181.45 KB @ 544.8 MB/s +==> Extracting libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk from binary cache +==> libpciaccess: Successfully installed libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd -==> Installing libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd [27/68] -==> Fetching file:///mirror/blobs/sha256/fc/fcab35e1e2b8b1ac6104ce475a848415564d9a6b6e2ee25641bd19ac1daa8532 - [100%] 24.13 MB @ 341.3 GB/s -==> Extracting openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm from binary cache -==> openblas: Successfully installed openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm - Search: 0.00s. Fetch: 0.04s. Install: 0.61s. Extract: 0.54s. Relocate: 0.04s. Total: 0.65s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm -==> Installing openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm [28/68] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk +==> Installing libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk [24/68] +==> Fetching file:///mirror/blobs/sha256/e9/e97c67351cfa8c848abedbbf642835f1d646723cfa9f1259bb973420bf22db51 + [100%] 176.78 KB @ 519.2 MB/s +==> Extracting libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b from binary cache +==> libmd: Successfully installed libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b + Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.02s. Relocate: 0.01s. Total: 0.11s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b +==> Installing libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b [25/68] ==> Fetching file:///mirror/blobs/sha256/6e/6e3df487eecba3fdcb80039153b860279f89f7d7fe5d257897ec1fd14fcb791e - [100%] 66.90 MB @ 411.3 GB/s + [100%] 66.90 MB @ 441.3 GB/s ==> Extracting ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb from binary cache ==> ncurses: Successfully installed ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb Search: 0.00s. Fetch: 0.02s. Install: 0.57s. Extract: 0.53s. Relocate: 0.02s. Total: 0.59s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb -==> Installing ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb [29/68] +==> Installing ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb [26/68] +==> Fetching file:///mirror/blobs/sha256/f3/f31bb9ea0b55f915a9d6adf2e586d545541104e33e7635a62a86ca71b61ebcc6 + [100%] 62.16 MB @ 381.2 GB/s +==> Extracting libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly from binary cache +==> libiconv: Successfully installed libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.10s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly +==> Installing libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly [27/68] ==> Fetching file:///mirror/blobs/sha256/29/29613d409d98fb74f79f9b80ed750f77d5c80a4c67038a6580985d8611eb9c3b - [100%] 61.26 MB @ 980.3 MB/s + [100%] 61.26 MB @ 371.0 GB/s ==> Extracting libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t from binary cache ==> libfabric: Successfully installed libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t -==> Installing libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t [30/68] -==> Fetching file:///mirror/blobs/sha256/e9/e97c67351cfa8c848abedbbf642835f1d646723cfa9f1259bb973420bf22db51 - [100%] 176.78 KB @ 549.6 MB/s -==> Extracting libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b from binary cache -==> libmd: Successfully installed libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.02s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b -==> Installing libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b [31/68] +==> Installing libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t [28/68] +==> Fetching file:///mirror/blobs/sha256/58/58598af6ef3e490496ac23b2deb5734aa393484b5d18dc1035cab0bd3c9be2ae + [100%] 61.83 MB @ 421.1 GB/s +==> Extracting xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx from binary cache +==> xz: Successfully installed xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx + Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.07s. Relocate: 0.01s. Total: 0.12s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx +==> Installing xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx [29/68] ==> Fetching file:///mirror/blobs/sha256/f9/f9a5ab24dbae32b158abfff1177d2600787e7a09e902f5692967bcc2aa8549dc [100%] 223.87 KB @ 563.6 MB/s ==> Extracting zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq -==> Installing zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [32/68] -==> Fetching file:///mirror/blobs/sha256/41/41f2130514252891e6c314cecaf4a52055b27d244fb7101864dd61d1a2087804 - [100%] 181.45 KB @ 498.4 MB/s -==> Extracting libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk from binary cache -==> libpciaccess: Successfully installed libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk +==> Installing zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [30/68] +==> Fetching file:///mirror/blobs/sha256/fc/fcab35e1e2b8b1ac6104ce475a848415564d9a6b6e2ee25641bd19ac1daa8532 + [100%] 24.13 MB @ 411.3 GB/s +==> Extracting openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm from binary cache +==> openblas: Successfully installed openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm + Search: 0.00s. Fetch: 0.04s. Install: 0.61s. Extract: 0.54s. Relocate: 0.04s. Total: 0.65s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm +==> Installing openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm [31/68] +==> Fetching file:///mirror/blobs/sha256/ff/ff0044f4698c048ab4a225c71b0e7e5d8c6c902d4eeee7010343dbad8803b5cf + [100%] 93.01 KB @ 382.1 MB/s +==> Extracting libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd from binary cache +==> libffi: Successfully installed libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk -==> Installing libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk [33/68] -==> Fetching file:///mirror/blobs/sha256/0e/0eeb5b2d0a3c05e415efdc30fa7dd71d997ce5ffb024ccce8afc60746e4ec94c - [100%] 61.13 MB @ 991.5 MB/s -==> Extracting diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns from binary cache -==> diffutils: Successfully installed diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd +==> Installing libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd [32/68] +==> Fetching file:///mirror/blobs/sha256/86/865d78f9fc5654ff92ec4a1d58beea89732ebc1d7a0f516611fb038dd8f6b97a + [100%] 61.56 MB @ 421.1 GB/s +==> Extracting zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw from binary cache +==> zstd: Successfully installed zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.01s. Total: 0.08s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw +==> Installing zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw [33/68] +==> Fetching file:///mirror/blobs/sha256/48/489fa0369ae5bf3380f64f36d50d3d0ccc3983233891034db55034baabff36e5 + [100%] 453.19 KB @ 762.5 MB/s +==> Extracting libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b from binary cache +==> libbsd: Successfully installed libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.09s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b +==> Installing libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b [34/68] +==> Fetching file:///mirror/blobs/sha256/e9/e9d8fec78b25d94d102e47a5dd47d72183ae15ceb15b4cb9b05bd04e027b94b0 + [100%] 61.67 MB @ 371.1 GB/s +==> Extracting readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k from binary cache +==> readline: Successfully installed readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns -==> Installing diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns [34/68] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k +==> Installing readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k [35/68] ==> Fetching file:///mirror/blobs/sha256/32/324c4ccb22f78c92b236568acb2da1e09c59771808f29c40cafb6402bbf731d1 - [100%] 905.22 KB @ 978.0 MB/s + [100%] 905.22 KB @ 957.1 MB/s ==> Extracting libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef from binary cache ==> libedit: Successfully installed libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s + Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.03s. Relocate: 0.01s. Total: 0.14s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef -==> Installing libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef [35/68] -==> Fetching file:///mirror/blobs/sha256/e9/e9d8fec78b25d94d102e47a5dd47d72183ae15ceb15b4cb9b05bd04e027b94b0 - [100%] 61.67 MB @ 351.1 GB/s -==> Extracting readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k from binary cache -==> readline: Successfully installed readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k +==> Installing libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef [36/68] +==> Fetching file:///mirror/blobs/sha256/0e/0eeb5b2d0a3c05e415efdc30fa7dd71d997ce5ffb024ccce8afc60746e4ec94c + [100%] 61.13 MB @ 995.1 MB/s +==> Extracting diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns from binary cache +==> diffutils: Successfully installed diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k -==> Installing readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k [36/68] -==> Fetching file:///mirror/blobs/sha256/48/489fa0369ae5bf3380f64f36d50d3d0ccc3983233891034db55034baabff36e5 - [100%] 453.19 KB @ 765.5 MB/s -==> Extracting libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b from binary cache -==> libbsd: Successfully installed libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.05s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b -==> Installing libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b [37/68] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns +==> Installing diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns [37/68] ==> Fetching file:///mirror/blobs/sha256/2f/2f26acbf32bf55c31b3de49c96c5d859685365fa4450f9c8c24b647692428f0a - [100%] 94.20 KB @ 403.6 MB/s + [100%] 94.20 KB @ 437.1 MB/s ==> Extracting pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz from binary cache ==> pigz: Successfully installed pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz ==> Installing pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz [38/68] ==> Fetching file:///mirror/blobs/sha256/1c/1cea6db67250561dd1373dc9670e764f9bd4d1a2db16419aed63c78c4e3fb059 - [100%] 62.72 MB @ 411.2 GB/s + [100%] 62.72 MB @ 431.2 GB/s ==> Extracting libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d from binary cache ==> libxml2: Successfully installed libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.07s. Relocate: 0.02s. Total: 0.13s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d ==> Installing libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d [39/68] -==> Fetching file:///mirror/blobs/sha256/34/34e8cea4eb46b5807dece8e59b0b598c87af1cec25310557de4df6afcca1acd9 - [100%] 294.79 KB @ 671.2 MB/s -==> Extracting bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu from binary cache -==> bzip2: Successfully installed bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu - Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.01s. Relocate: 0.01s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu -==> Installing bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu [40/68] +==> Fetching file:///mirror/blobs/sha256/1b/1be051dbb0f6934499136055dd4f9bf8cf503081b6de57e687c080378120ba80 + [100%] 636.27 KB @ 855.4 MB/s +==> Extracting expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t from binary cache +==> expat: Successfully installed expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t +==> Installing expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t [40/68] ==> Fetching file:///mirror/blobs/sha256/76/76ff26587fa3e1f2dd890da3b097517feae500866b81207fd5d457b3b274154e - [100%] 961.91 KB @ 890.6 MB/s + [100%] 961.91 KB @ 987.2 MB/s ==> Extracting gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj from binary cache ==> gdbm: Successfully installed gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.03s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj ==> Installing gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj [41/68] ==> Fetching file:///mirror/blobs/sha256/89/8964358e0481e7c998f1230ff59859b619ba331783c35723c33722fce7b34a6e - [100%] 10.85 MB @ 391.3 GB/s + [100%] 10.85 MB @ 421.3 GB/s ==> Extracting sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq from binary cache ==> sqlite: Successfully installed sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq - Search: 0.00s. Fetch: 0.02s. Install: 0.26s. Extract: 0.20s. Relocate: 0.03s. Total: 0.28s + Search: 0.00s. Fetch: 0.02s. Install: 0.26s. Extract: 0.20s. Relocate: 0.02s. Total: 0.28s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq ==> Installing sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq [42/68] -==> Fetching file:///mirror/blobs/sha256/1b/1be051dbb0f6934499136055dd4f9bf8cf503081b6de57e687c080378120ba80 - [100%] 636.27 KB @ 875.0 MB/s -==> Extracting expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t from binary cache -==> expat: Successfully installed expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t -==> Installing expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t [43/68] +==> Fetching file:///mirror/blobs/sha256/34/34e8cea4eb46b5807dece8e59b0b598c87af1cec25310557de4df6afcca1acd9 + [100%] 294.79 KB @ 611.5 MB/s +==> Extracting bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu from binary cache +==> bzip2: Successfully installed bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu +==> Installing bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu [43/68] ==> Fetching file:///mirror/blobs/sha256/21/21c47a6f0358fbd071972268ba8bf53a3a03bf6bd5d91142e14e4c1aa1eb757c - [100%] 64.96 MB @ 411.3 GB/s + [100%] 64.96 MB @ 351.3 GB/s ==> Extracting hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf from binary cache ==> hwloc: Successfully installed hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf - Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.15s. Relocate: 0.02s. Total: 0.21s + Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.15s. Relocate: 0.02s. Total: 0.22s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf ==> Installing hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf [44/68] -==> Fetching file:///mirror/blobs/sha256/5f/5fa5f095a919483f2a90b969dff19bc1f8d0f6fb8cfab861976bedd2591f3860 - [100%] 61.27 MB @ 431.0 GB/s -==> Extracting tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl from binary cache -==> tar: Successfully installed tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.03s. Relocate: 0.02s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl -==> Installing tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl [45/68] ==> Fetching file:///mirror/blobs/sha256/56/564f99054e6e373a7230aabb09056f1c50c144df54bfdc16141af219b4f7aa5a - [100%] 15.62 MB @ 411.3 GB/s + [100%] 15.62 MB @ 421.3 GB/s ==> Extracting perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage from binary cache ==> perl: Successfully installed perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage - Search: 0.00s. Fetch: 0.03s. Install: 0.76s. Extract: 0.63s. Relocate: 0.10s. Total: 0.79s + Search: 0.00s. Fetch: 0.03s. Install: 0.78s. Extract: 0.64s. Relocate: 0.10s. Total: 0.81s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage -==> Installing perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage [46/68] -==> Fetching file:///mirror/blobs/sha256/fe/fec353efd4775021067e3abd226d8eaf7d2f4162f826a22bd6e7ba98f652eb80 - [100%] 12.71 MB @ 381.3 GB/s -==> Extracting gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt from binary cache -==> gettext: Successfully installed gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt - Search: 0.00s. Fetch: 0.02s. Install: 0.59s. Extract: 0.52s. Relocate: 0.04s. Total: 0.61s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt -==> Installing gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt [47/68] -==> Fetching file:///mirror/blobs/sha256/ae/aeff6cfb3399681a46f38c63b4c28b54cf1378cc9d87070693ea9a857701efe0 - [100%] 68.14 MB @ 411.3 GB/s -==> Extracting openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb from binary cache -==> openssl: Successfully installed openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb - Search: 0.00s. Fetch: 0.02s. Install: 0.30s. Extract: 0.18s. Relocate: 0.02s. Total: 0.32s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb -==> Installing openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb [48/68] +==> Installing perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage [45/68] +==> Fetching file:///mirror/blobs/sha256/5f/5fa5f095a919483f2a90b969dff19bc1f8d0f6fb8cfab861976bedd2591f3860 + [100%] 61.27 MB @ 381.1 GB/s +==> Extracting tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl from binary cache +==> tar: Successfully installed tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl + Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.03s. Relocate: 0.02s. Total: 0.09s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl +==> Installing tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl [46/68] +==> Fetching file:///mirror/blobs/sha256/45/451b1a76f21be01ee2a8e62f7489947eb894d4cee6f80c80ce0f9b0e212cdb50 + [100%] 61.03 MB @ 999.9 MB/s +==> Extracting autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb from binary cache +==> autoconf: Successfully installed autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb + Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.04s. Relocate: 0.01s. Total: 0.16s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb +==> Installing autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb [47/68] ==> Fetching file:///mirror/blobs/sha256/1a/1a81221c52b2afa4b6f99340ee1b621ed6bb3ee2b5e35b9a943b358555dfcddd - [100%] 744.42 KB @ 858.2 MB/s + [100%] 744.42 KB @ 833.7 MB/s ==> Extracting libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs from binary cache ==> libxcrypt: Successfully installed libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs -==> Installing libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs [49/68] -==> Fetching file:///mirror/blobs/sha256/45/451b1a76f21be01ee2a8e62f7489947eb894d4cee6f80c80ce0f9b0e212cdb50 - [100%] 61.03 MB @ 411.0 GB/s -==> Extracting autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb from binary cache -==> autoconf: Successfully installed autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb -==> Installing autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb [50/68] +==> Installing libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs [48/68] +==> Fetching file:///mirror/blobs/sha256/ae/aeff6cfb3399681a46f38c63b4c28b54cf1378cc9d87070693ea9a857701efe0 + [100%] 68.14 MB @ 571.3 GB/s +==> Extracting openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb from binary cache +==> openssl: Successfully installed openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb + Search: 0.00s. Fetch: 0.02s. Install: 0.23s. Extract: 0.18s. Relocate: 0.02s. Total: 0.25s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb +==> Installing openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb [49/68] +==> Fetching file:///mirror/blobs/sha256/fe/fec353efd4775021067e3abd226d8eaf7d2f4162f826a22bd6e7ba98f652eb80 + [100%] 12.71 MB @ 401.3 GB/s +==> Extracting gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt from binary cache +==> gettext: Successfully installed gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt + Search: 0.00s. Fetch: 0.02s. Install: 0.59s. Extract: 0.52s. Relocate: 0.04s. Total: 0.62s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt +==> Installing gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt [50/68] +==> Fetching file:///mirror/blobs/sha256/42/425a9cf5a729fa652891db98cb363e0ca2f8211e677f5bc770426866c79c4059 + [100%] 710.71 KB @ 827.6 MB/s +==> Extracting automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 from binary cache +==> automake: Successfully installed automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 + Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.04s. Relocate: 0.02s. Total: 0.10s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 +==> Installing automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 [51/68] ==> Fetching file:///mirror/blobs/sha256/5e/5e7eafb9fd0f7cc61c2c32ca35d98b88f343174b8c89743ced108fbb319cd019 - [100%] 62.87 MB @ 481.2 GB/s + [100%] 62.87 MB @ 461.2 GB/s ==> Extracting libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v from binary cache ==> libevent: Successfully installed libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.07s. Relocate: 0.01s. Total: 0.12s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v -==> Installing libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v [51/68] +==> Installing libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v [52/68] ==> Fetching file:///mirror/blobs/sha256/d6/d65881cbe8859834a37e6b54c6fa0fddd637046905b5039a30464235c6151caa - [100%] 61.27 MB @ 421.1 GB/s + [100%] 61.27 MB @ 471.1 GB/s ==> Extracting curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb from binary cache ==> curl: Successfully installed curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.03s. Relocate: 0.01s. Total: 0.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb -==> Installing curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb [52/68] +==> Installing curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb [53/68] ==> Fetching file:///mirror/blobs/sha256/09/094ee8e5047a450a9b1cdfad98834cb3ccff10f0f334a05725cb5a2cc0a4c812 [100%] 98.78 MB @ 421.4 GB/s ==> Extracting python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 from binary cache ==> python: Successfully installed python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 - Search: 0.00s. Fetch: 0.15s. Install: 3.26s. Extract: 3.08s. Relocate: 0.14s. Total: 3.40s + Search: 0.00s. Fetch: 0.15s. Install: 3.34s. Extract: 3.16s. Relocate: 0.15s. Total: 3.49s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 -==> Installing python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 [53/68] +==> Installing python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 [54/68] ==> Fetching file:///mirror/blobs/sha256/a1/a1f963fa003e46337cc051275b09233f0177fc5f3623d50ae22feceaf41606ad - [100%] 61.97 MB @ 461.2 GB/s + [100%] 61.97 MB @ 401.2 GB/s ==> Extracting krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z from binary cache ==> krb5: Successfully installed krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z - Search: 0.00s. Fetch: 0.01s. Install: 0.22s. Extract: 0.07s. Relocate: 0.11s. Total: 0.22s + Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.07s. Relocate: 0.04s. Total: 0.15s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z -==> Installing krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z [54/68] -==> Fetching file:///mirror/blobs/sha256/42/425a9cf5a729fa652891db98cb363e0ca2f8211e677f5bc770426866c79c4059 - [100%] 710.71 KB @ 936.5 MB/s -==> Extracting automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 from binary cache -==> automake: Successfully installed automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.04s. Relocate: 0.02s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 -==> Installing automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 [55/68] +==> Installing krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z [55/68] +==> Fetching file:///mirror/blobs/sha256/05/0569b4297d99ee9477064f75a150f847a27d25c96922219f56801bfbab932779 + [100%] 398.05 KB @ 681.2 MB/s +==> Extracting numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr from binary cache +==> numactl: Successfully installed numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr +==> Installing numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr [56/68] ==> Fetching file:///mirror/blobs/sha256/28/28ba9baff735b81352c4bad8ab64b6ea66027700414916fb16864cca30e7fff9 - [100%] 66.40 MB @ 461.3 GB/s + [100%] 66.40 MB @ 411.3 GB/s ==> Extracting pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc from binary cache ==> pmix: Successfully installed pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc Search: 0.00s. Fetch: 0.02s. Install: 0.22s. Extract: 0.16s. Relocate: 0.03s. Total: 0.23s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc -==> Installing pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc [56/68] +==> Installing pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc [57/68] ==> Fetching file:///mirror/blobs/sha256/d8/d811fdb2a0072d2cae1a35bdfb03d5a06d2e0c3cde85e53e988b283d1c5381cf - [100%] 29.85 MB @ 511.4 GB/s + [100%] 29.85 MB @ 411.3 GB/s ==> Extracting cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku from binary cache ==> cmake: Successfully installed cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku - Search: 0.00s. Fetch: 0.05s. Install: 1.18s. Extract: 1.07s. Relocate: 0.08s. Total: 1.23s + Search: 0.00s. Fetch: 0.05s. Install: 1.25s. Extract: 1.14s. Relocate: 0.08s. Total: 1.30s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku -==> Installing cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku [57/68] -==> Fetching file:///mirror/blobs/sha256/93/93ab17395a7dee9efb5790ad264cac9523df6f8df86665cdbbaec7ebcf719b74 - [100%] 63.10 MB @ 401.2 GB/s -==> Extracting openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 from binary cache -==> openssh: Successfully installed openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 - Search: 0.00s. Fetch: 0.01s. Install: 0.22s. Extract: 0.07s. Relocate: 0.04s. Total: 0.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 -==> Installing openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 [58/68] -==> Fetching file:///mirror/blobs/sha256/05/0569b4297d99ee9477064f75a150f847a27d25c96922219f56801bfbab932779 - [100%] 398.05 KB @ 721.2 MB/s -==> Extracting numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr from binary cache -==> numactl: Successfully installed numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr -==> Installing numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr [59/68] +==> Installing cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku [58/68] ==> Fetching file:///mirror/blobs/sha256/de/de3cbf2d958183636005db17720a60422a0c80633cf667cdd27517b30e9bf1da - [100%] 63.84 MB @ 501.3 GB/s + [100%] 63.84 MB @ 431.3 GB/s ==> Extracting yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob from binary cache ==> yaksa: Successfully installed yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.08s. Relocate: 0.01s. Total: 0.14s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob -==> Installing yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob [60/68] +==> Installing yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob [59/68] +==> Fetching file:///mirror/blobs/sha256/93/93ab17395a7dee9efb5790ad264cac9523df6f8df86665cdbbaec7ebcf719b74 + [100%] 63.10 MB @ 371.2 GB/s +==> Extracting openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 from binary cache +==> openssh: Successfully installed openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 + Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.07s. Relocate: 0.04s. Total: 0.16s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 +==> Installing openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 [60/68] ==> Fetching file:///mirror/blobs/sha256/00/00732a5a39401d9757fab35e1dab15cc6f35ca2b6372091a58f099e992dbed47 - [100%] 64.86 MB @ 421.2 GB/s + [100%] 64.86 MB @ 421.3 GB/s ==> Extracting prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 from binary cache ==> prrte: Successfully installed prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 Search: 0.00s. Fetch: 0.01s. Install: 0.17s. Extract: 0.11s. Relocate: 0.02s. Total: 0.19s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 ==> Installing prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 [61/68] ==> Fetching file:///mirror/blobs/sha256/77/7769e2156df5ee688e458a9f42ba5dd745e734269e963baf3ca27785328fd4d8 - [100%] 69.90 MB @ 431.3 GB/s + [100%] 69.90 MB @ 471.3 GB/s ==> Extracting netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt from binary cache ==> netlib-lapack: Successfully installed netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt - Search: 0.00s. Fetch: 0.02s. Install: 0.28s. Extract: 0.22s. Relocate: 0.03s. Total: 0.30s + Search: 0.00s. Fetch: 0.02s. Install: 0.35s. Extract: 0.22s. Relocate: 0.03s. Total: 0.38s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt ==> Installing netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt [62/68] ==> Fetching file:///mirror/blobs/sha256/b1/b169e3b2207480bfd2f4e5eb790791ce8ab0d3d9ca489d9783cf700c6862848b - [100%] 15.15 MB @ 361.3 GB/s + [100%] 15.15 MB @ 471.4 GB/s ==> Extracting mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa from binary cache ==> mpich: Successfully installed mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa - Search: 0.00s. Fetch: 0.03s. Install: 0.95s. Extract: 0.87s. Relocate: 0.04s. Total: 0.97s + Search: 0.00s. Fetch: 0.03s. Install: 0.95s. Extract: 0.88s. Relocate: 0.04s. Total: 0.98s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa ==> Installing mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa [63/68] ==> Fetching file:///mirror/blobs/sha256/d2/d263c358d41e304231d8f8d07132398600fd36c64c4877cd5f5b111423512a62 - [100%] 14.55 MB @ 411.3 GB/s + [100%] 14.55 MB @ 441.4 GB/s ==> Extracting openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 from binary cache ==> openmpi: Successfully installed openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 - Search: 0.00s. Fetch: 0.03s. Install: 0.78s. Extract: 0.64s. Relocate: 0.10s. Total: 0.81s + Search: 0.00s. Fetch: 0.03s. Install: 0.72s. Extract: 0.65s. Relocate: 0.04s. Total: 0.75s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 ==> Installing openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 [64/68] +==> Fetching file:///mirror/blobs/sha256/8b/8be728f429fd697cbd43ec01a478621520fec33a0c863fc06e8c51cad76e68a6 + [100%] 62.72 MB @ 461.2 GB/s +==> Extracting netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli from binary cache +==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli + Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.06s. Relocate: 0.03s. Total: 0.21s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli +==> Installing netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli [65/68] ==> Fetching file:///mirror/blobs/sha256/0a/0a453b08ef1a681c9bde495eeb29e416b91b5c46cde573767ff61fd2524f2ba8 - [100%] 62.72 MB @ 391.1 GB/s + [100%] 62.72 MB @ 421.2 GB/s ==> Extracting netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt from binary cache ==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.06s. Relocate: 0.03s. Total: 0.14s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt -==> Installing netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt [65/68] -==> Fetching file:///mirror/blobs/sha256/8b/8be728f429fd697cbd43ec01a478621520fec33a0c863fc06e8c51cad76e68a6 - [100%] 62.72 MB @ 411.2 GB/s -==> Extracting netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli from binary cache -==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli - Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.06s. Relocate: 0.03s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli -==> Installing netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli [66/68] -==> Fetching file:///mirror/blobs/sha256/14/140755102624721dcb4e526fd3aad57a7e612d977a05f94f2f8f97cd6fea7408 - [100%] 62.73 MB @ 431.2 GB/s -==> Extracting netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q from binary cache -==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q - Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.06s. Relocate: 0.03s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q -==> Installing netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q [67/68] +==> Installing netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt [66/68] ==> Fetching file:///mirror/blobs/sha256/9d/9dc420645aca7c0b19bb8eba80b5781d3e688b6b2f1a6b8cb8b5a57b3425d394 - [100%] 62.73 MB @ 421.2 GB/s + [100%] 62.73 MB @ 371.2 GB/s ==> Extracting netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc from binary cache ==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.06s. Relocate: 0.03s. Total: 0.15s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc -==> Installing netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc [68/68] +==> Installing netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc [67/68] +==> Fetching file:///mirror/blobs/sha256/14/140755102624721dcb4e526fd3aad57a7e612d977a05f94f2f8f97cd6fea7408 + [100%] 62.73 MB @ 391.0 GB/s +==> Extracting netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q from binary cache +==> netlib-scalapack: Successfully installed netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q + Search: 0.00s. Fetch: 0.01s. Install: 0.21s. Extract: 0.06s. Relocate: 0.03s. Total: 0.22s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q +==> Installing netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q [68/68] diff --git a/outputs/stacks/concretize-3.out b/outputs/stacks/concretize-3.out index 1fd70189f..8fa38cf6f 100644 --- a/outputs/stacks/concretize-3.out +++ b/outputs/stacks/concretize-3.out @@ -116,261 +116,261 @@ $ spack install [+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k [+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa [+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog ==> Fetching file:///mirror/blobs/sha256/81/814bb309cb856dddb13d4d98e061a15b8ba3eec88ccc77c023f5ba5d334f4df5 - [100%] 17.79 KB @ 109.7 MB/s + [100%] 17.79 KB @ 111.4 MB/s ==> Extracting python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak from binary cache ==> python-venv: Successfully installed python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak - Search: 0.00s. Fetch: 0.19s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.28s + Search: 0.00s. Fetch: 0.18s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.27s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak ==> Installing python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak [61/94] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc ==> Fetching file:///mirror/blobs/sha256/a6/a6d81e462f8065bbacf57740c65fa85e638cad01bdd4c3dd31c99f31ea8680fa - [100%] 64.18 MB @ 341.1 GB/s + [100%] 64.18 MB @ 401.2 GB/s ==> Extracting py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz from binary cache ==> py-pip: Successfully installed py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz - Search: 0.00s. Fetch: 0.01s. Install: 0.26s. Extract: 0.22s. Relocate: 0.01s. Total: 0.28s + Search: 0.00s. Fetch: 0.01s. Install: 0.26s. Extract: 0.21s. Relocate: 0.01s. Total: 0.28s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz ==> Installing py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz [65/94] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 ==> Fetching file:///mirror/blobs/sha256/bd/bd4a5a9651c3f67b2d3eacbbe8f8e7f32e0db6bec82089542ee4c74b9606383c - [100%] 63.28 MB @ 381.1 GB/s + [100%] 63.28 MB @ 411.2 GB/s ==> Extracting libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps from binary cache ==> libunistring: Successfully installed libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.08s. Relocate: 0.01s. Total: 0.13s + Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.07s. Relocate: 0.01s. Total: 0.21s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps -==> Installing libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps [66/94] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 -==> Fetching file:///mirror/blobs/sha256/18/184a896cdfc7520a22f84afe1ed8f950429f4f9ecd181251bc0737970cab23fa - [100%] 202.72 KB @ 568.7 MB/s -==> Extracting py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae from binary cache -==> py-wheel: Successfully installed py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae - Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.02s. Relocate: 0.01s. Total: 0.15s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae -==> Installing py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae [68/94] +==> Installing libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps [67/94] ==> Fetching file:///mirror/blobs/sha256/0d/0d4dead6e72865c30b79abf0966ef4929438668153c5494ef40a3c63c858f266 - [100%] 63.02 MB @ 401.2 GB/s + [100%] 63.02 MB @ 351.0 GB/s ==> Extracting py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft from binary cache ==> py-setuptools: Successfully installed py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft - Search: 0.00s. Fetch: 0.01s. Install: 0.24s. Extract: 0.20s. Relocate: 0.01s. Total: 0.25s + Search: 0.00s. Fetch: 0.01s. Install: 0.24s. Extract: 0.19s. Relocate: 0.01s. Total: 0.25s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft -==> Installing py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft [69/94] +==> Installing py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft [68/94] +==> Fetching file:///mirror/blobs/sha256/18/184a896cdfc7520a22f84afe1ed8f950429f4f9ecd181251bc0737970cab23fa + [100%] 202.72 KB @ 493.8 MB/s +==> Extracting py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae from binary cache +==> py-wheel: Successfully installed py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae + Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae +==> Installing py-wheel-0.45.1-vs4xbx3m62sptk4ch3fs5oozhru53eae [69/94] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q ==> Fetching file:///mirror/blobs/sha256/6e/6e871d5a6e612e1cfa930b5d5ecf61910720ca704aca344c7484c64a5e18cc4c - [100%] 521.92 KB @ 793.4 MB/s + [100%] 521.92 KB @ 861.2 MB/s ==> Extracting libidn2-2.3.7-gntupl34gn7ghsb44ybuohibki52dfwa from binary cache ==> libidn2: Successfully installed libidn2-2.3.7-gntupl34gn7ghsb44ybuohibki52dfwa Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.03s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libidn2-2.3.7-gntupl34gn7ghsb44ybuohibki52dfwa -==> Installing libidn2-2.3.7-gntupl34gn7ghsb44ybuohibki52dfwa [70/94] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q -==> Fetching file:///mirror/blobs/sha256/4e/4e44dfcc1e6b3781705ef00e627647add329779aa3cee51f6b2c118a59154bd2 - [100%] 137.36 KB @ 471.5 MB/s -==> Extracting py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg from binary cache -==> py-flit-core: Successfully installed py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg -==> Installing py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg [73/94] -==> Fetching file:///mirror/blobs/sha256/60/60054f411e5e4792e707f485791b9342d8fdbb9882cde6d8b8a45064e82a4a7b - [100%] 80.75 KB @ 351.7 MB/s -==> Extracting py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp from binary cache -==> py-gast: Successfully installed py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp -==> Installing py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp [74/94] +==> Installing libidn2-2.3.7-gntupl34gn7ghsb44ybuohibki52dfwa [72/94] ==> Fetching file:///mirror/blobs/sha256/3f/3fdbe64a0223f88017656e072a0c834e1d9812518669de26b3945316a7037d67 [100%] 63.09 MB @ 401.2 GB/s ==> Extracting meson-1.8.5-c5mkho7hg3354cm5522zpotkrkflvxk6 from binary cache ==> meson: Successfully installed meson-1.8.5-c5mkho7hg3354cm5522zpotkrkflvxk6 Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.14s. Relocate: 0.01s. Total: 0.20s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/meson-1.8.5-c5mkho7hg3354cm5522zpotkrkflvxk6 -==> Installing meson-1.8.5-c5mkho7hg3354cm5522zpotkrkflvxk6 [75/94] -==> Fetching file:///mirror/blobs/sha256/1a/1af3c86479ca912856ba95337d685cc8c567b90bc60f4f89d04409c196d9fa69 - [100%] 22.90 KB @ 141.5 MB/s -==> Extracting py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj from binary cache -==> py-calver: Successfully installed py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj - Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.01s. Relocate: 0.01s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj -==> Installing py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj [76/94] -==> Fetching file:///mirror/blobs/sha256/70/702d48b4c1e390c3e0b3f55dd651bd3d30113e4f61413be9d3a3acd8d5d667c6 - [100%] 15.06 MB @ 371.3 GB/s -==> Extracting py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f from binary cache -==> py-cython: Successfully installed py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f - Search: 0.00s. Fetch: 0.03s. Install: 0.47s. Extract: 0.36s. Relocate: 0.07s. Total: 0.49s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f -==> Installing py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f [77/94] +==> Installing meson-1.8.5-c5mkho7hg3354cm5522zpotkrkflvxk6 [73/94] ==> Fetching file:///mirror/blobs/sha256/05/05468a8127a10d28153e2c6c43b9e00aad774c993727726b004d90e7faebe181 - [100%] 141.85 KB @ 477.5 MB/s + [100%] 141.85 KB @ 415.8 MB/s ==> Extracting py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b from binary cache ==> py-ply: Successfully installed py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b -==> Installing py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b [78/94] +==> Installing py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b [74/94] +==> Fetching file:///mirror/blobs/sha256/70/702d48b4c1e390c3e0b3f55dd651bd3d30113e4f61413be9d3a3acd8d5d667c6 + [100%] 15.06 MB @ 411.2 GB/s +==> Extracting py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f from binary cache +==> py-cython: Successfully installed py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f + Search: 0.00s. Fetch: 0.03s. Install: 0.55s. Extract: 0.35s. Relocate: 0.15s. Total: 0.57s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f +==> Installing py-cython-3.1.3-apuchub6dg7aq6almwsbcbcbolixfr5f [75/94] +==> Fetching file:///mirror/blobs/sha256/4e/4e44dfcc1e6b3781705ef00e627647add329779aa3cee51f6b2c118a59154bd2 + [100%] 137.36 KB @ 470.7 MB/s +==> Extracting py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg from binary cache +==> py-flit-core: Successfully installed py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.02s. Relocate: 0.01s. Total: 0.07s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg +==> Installing py-flit-core-3.12.0-55omqj2ucvxm5haltjpcktwthiiqx4gg [76/94] +==> Fetching file:///mirror/blobs/sha256/1a/1af3c86479ca912856ba95337d685cc8c567b90bc60f4f89d04409c196d9fa69 + [100%] 22.90 KB @ 166.2 MB/s +==> Extracting py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj from binary cache +==> py-calver: Successfully installed py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj +==> Installing py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj [77/94] +==> Fetching file:///mirror/blobs/sha256/60/60054f411e5e4792e707f485791b9342d8fdbb9882cde6d8b8a45064e82a4a7b + [100%] 80.75 KB @ 371.8 MB/s +==> Extracting py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp from binary cache +==> py-gast: Successfully installed py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp +==> Installing py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp [78/94] ==> Fetching file:///mirror/blobs/sha256/6e/6ef69795d15b583c186d375fc9b2b4310df1c0108f66ec99a525aca6b498389b - [100%] 63.56 MB @ 441.3 GB/s + [100%] 63.56 MB @ 411.4 GB/s ==> Extracting git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu from binary cache ==> git: Successfully installed git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu - Search: 0.00s. Fetch: 0.10s. Install: 1.41s. Extract: 1.19s. Relocate: 0.18s. Total: 1.51s + Search: 0.00s. Fetch: 0.10s. Install: 1.41s. Extract: 1.19s. Relocate: 0.17s. Total: 1.51s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu ==> Installing git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu [79/94] ==> Fetching file:///mirror/blobs/sha256/0d/0d88c32ed44b626a50154210f9befa1ab9c519bdabdb4aecc4f3e77a17580caf - [100%] 181.82 KB @ 499.4 MB/s + [100%] 181.82 KB @ 593.5 MB/s ==> Extracting py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo from binary cache ==> py-packaging: Successfully installed py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo - Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.01s. Relocate: 0.01s. Total: 0.15s + Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.01s. Relocate: 0.01s. Total: 0.16s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo ==> Installing py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo [80/94] ==> Fetching file:///mirror/blobs/sha256/bc/bc6d75995d7beef0e1d74b08be8b2e80ebbd2384c8a56a02ae74867115547005 - [100%] 72.06 KB @ 306.2 MB/s + [100%] 72.06 KB @ 310.0 MB/s ==> Extracting py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n from binary cache ==> py-pathspec: Successfully installed py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n ==> Installing py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n [81/94] -==> Fetching file:///mirror/blobs/sha256/5c/5c54a464640f8879cf84c3fb44f49fd5748a4d5edb03ddb040faf1ce841df1b4 - [100%] 68.34 KB @ 320.6 MB/s -==> Extracting py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr from binary cache -==> py-beniget: Successfully installed py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr -==> Installing py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr [82/94] ==> Fetching file:///mirror/blobs/sha256/bc/bc23fb8e5ea0e883c90decd7f6ccbabacaedaa64ac85b4189abed13374d95dff - [100%] 45.95 KB @ 288.9 MB/s + [100%] 45.95 KB @ 275.7 MB/s ==> Extracting py-trove-classifiers-2025.9.11.17-cwn5qw7ibd5afs2nm3ortj752cpydzwi from binary cache ==> py-trove-classifiers: Successfully installed py-trove-classifiers-2025.9.11.17-cwn5qw7ibd5afs2nm3ortj752cpydzwi Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-trove-classifiers-2025.9.11.17-cwn5qw7ibd5afs2nm3ortj752cpydzwi -==> Installing py-trove-classifiers-2025.9.11.17-cwn5qw7ibd5afs2nm3ortj752cpydzwi [83/94] +==> Installing py-trove-classifiers-2025.9.11.17-cwn5qw7ibd5afs2nm3ortj752cpydzwi [82/94] +==> Fetching file:///mirror/blobs/sha256/5c/5c54a464640f8879cf84c3fb44f49fd5748a4d5edb03ddb040faf1ce841df1b4 + [100%] 68.34 KB @ 267.2 MB/s +==> Extracting py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr from binary cache +==> py-beniget: Successfully installed py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr + Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr +==> Installing py-beniget-0.4.2.post1-g6mqwbrfiyaec7n52og2aj3exkas2dfr [83/94] ==> Fetching file:///mirror/blobs/sha256/f9/f99d6c344e2a4d8118297a8399978fa7ab007f69980f025e878e7d04690366cb - [100%] 124.74 KB @ 453.0 MB/s + [100%] 124.74 KB @ 488.1 MB/s ==> Extracting py-setuptools-scm-8.2.1-xcq4maxl4uvt4fzgvckb5dxabce5kgla from binary cache ==> py-setuptools-scm: Successfully installed py-setuptools-scm-8.2.1-xcq4maxl4uvt4fzgvckb5dxabce5kgla Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.02s. Relocate: 0.01s. Total: 0.08s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-setuptools-scm-8.2.1-xcq4maxl4uvt4fzgvckb5dxabce5kgla ==> Installing py-setuptools-scm-8.2.1-xcq4maxl4uvt4fzgvckb5dxabce5kgla [84/94] ==> Fetching file:///mirror/blobs/sha256/17/17ba06d9a2de6c868c9edc332607a2695308e0e0d4d86562c9d223ef76e2f1d3 - [100%] 61.10 KB @ 331.5 MB/s + [100%] 61.10 KB @ 338.1 MB/s ==> Extracting py-pyproject-metadata-0.9.1-sypchiv5kanvcsa2jltzimi4yfeaoj7d from binary cache ==> py-pyproject-metadata: Successfully installed py-pyproject-metadata-0.9.1-sypchiv5kanvcsa2jltzimi4yfeaoj7d Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.01s. Relocate: 0.01s. Total: 0.15s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pyproject-metadata-0.9.1-sypchiv5kanvcsa2jltzimi4yfeaoj7d ==> Installing py-pyproject-metadata-0.9.1-sypchiv5kanvcsa2jltzimi4yfeaoj7d [85/94] ==> Fetching file:///mirror/blobs/sha256/75/7559f321f491a13d67f4f769064810681cf9611541b1aeb374ad3a32f93dd151 - [100%] 70.56 KB @ 322.4 MB/s + [100%] 70.56 KB @ 277.4 MB/s ==> Extracting py-pluggy-1.6.0-2c2amjcima3ytgzfpe6e2vpsnufbxbdy from binary cache ==> py-pluggy: Successfully installed py-pluggy-1.6.0-2c2amjcima3ytgzfpe6e2vpsnufbxbdy Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pluggy-1.6.0-2c2amjcima3ytgzfpe6e2vpsnufbxbdy ==> Installing py-pluggy-1.6.0-2c2amjcima3ytgzfpe6e2vpsnufbxbdy [86/94] ==> Fetching file:///mirror/blobs/sha256/85/858437ca532078963b27d9446e5d3e8a7f149002ea5c66e74f2248afec4b3824 - [100%] 99.86 KB @ 375.3 MB/s + [100%] 99.86 KB @ 363.0 MB/s ==> Extracting py-meson-python-0.18.0-o6u3um7xjpxbhw7qvrqpcxetc7kayuth from binary cache ==> py-meson-python: Successfully installed py-meson-python-0.18.0-o6u3um7xjpxbhw7qvrqpcxetc7kayuth Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-meson-python-0.18.0-o6u3um7xjpxbhw7qvrqpcxetc7kayuth ==> Installing py-meson-python-0.18.0-o6u3um7xjpxbhw7qvrqpcxetc7kayuth [87/94] ==> Fetching file:///mirror/blobs/sha256/2a/2a1d6fa351776a4aba752aa2e01368598dd7dcc101d443919e5a402e9a5e6a75 - [100%] 230.20 KB @ 589.8 MB/s + [100%] 230.20 KB @ 621.7 MB/s ==> Extracting py-hatchling-1.27.0-qb7x6jyrjbqihor6e2w7ignu74vujzwk from binary cache ==> py-hatchling: Successfully installed py-hatchling-1.27.0-qb7x6jyrjbqihor6e2w7ignu74vujzwk Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.03s. Relocate: 0.01s. Total: 0.10s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-hatchling-1.27.0-qb7x6jyrjbqihor6e2w7ignu74vujzwk ==> Installing py-hatchling-1.27.0-qb7x6jyrjbqihor6e2w7ignu74vujzwk [88/94] ==> Fetching file:///mirror/blobs/sha256/e2/e29502c35959a031a6b10f1cb507e35977e904c2e9e44fb82e4fd1855c5191c7 - [100%] 12.25 MB @ 411.3 GB/s + [100%] 12.25 MB @ 401.3 GB/s ==> Extracting py-numpy-2.3.4-ucqh5kunp6zmwio5o7bazmu5gx7yxcu2 from binary cache ==> py-numpy: Successfully installed py-numpy-2.3.4-ucqh5kunp6zmwio5o7bazmu5gx7yxcu2 - Search: 0.00s. Fetch: 0.02s. Install: 0.64s. Extract: 0.45s. Relocate: 0.06s. Total: 0.66s + Search: 0.00s. Fetch: 0.02s. Install: 0.64s. Extract: 0.44s. Relocate: 0.06s. Total: 0.66s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-numpy-2.3.4-ucqh5kunp6zmwio5o7bazmu5gx7yxcu2 ==> Installing py-numpy-2.3.4-ucqh5kunp6zmwio5o7bazmu5gx7yxcu2 [89/94] ==> Fetching file:///mirror/blobs/sha256/c2/c262ee6c0255d34ff1f1935f81b4252f4283c6f4e3d47984663bd227f84fa11e - [100%] 28.60 KB @ 147.7 MB/s + [100%] 28.60 KB @ 165.9 MB/s ==> Extracting py-hatch-vcs-0.5.0-44uhp2gd536qdfjmes5mjziueiakfrfr from binary cache ==> py-hatch-vcs: Successfully installed py-hatch-vcs-0.5.0-44uhp2gd536qdfjmes5mjziueiakfrfr Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-hatch-vcs-0.5.0-44uhp2gd536qdfjmes5mjziueiakfrfr ==> Installing py-hatch-vcs-0.5.0-44uhp2gd536qdfjmes5mjziueiakfrfr [90/94] ==> Fetching file:///mirror/blobs/sha256/a4/a4f39e5253d88260161bec5a7b78bee9d003fe42a3dd618cdb688dc01094c040 - [100%] 63.35 MB @ 351.3 GB/s + [100%] 63.35 MB @ 371.2 GB/s ==> Extracting py-pythran-0.18.0-w4fhoiyknplbtmf6m53wm72chgsmvq2r from binary cache ==> py-pythran: Successfully installed py-pythran-0.18.0-w4fhoiyknplbtmf6m53wm72chgsmvq2r - Search: 0.00s. Fetch: 0.01s. Install: 0.77s. Extract: 0.70s. Relocate: 0.01s. Total: 0.78s + Search: 0.00s. Fetch: 0.01s. Install: 0.75s. Extract: 0.69s. Relocate: 0.01s. Total: 0.76s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pythran-0.18.0-w4fhoiyknplbtmf6m53wm72chgsmvq2r ==> Installing py-pythran-0.18.0-w4fhoiyknplbtmf6m53wm72chgsmvq2r [91/94] ==> Fetching file:///mirror/blobs/sha256/24/247103da0e19b58f9c313a76b48d35f86f08dd7011f7834fa1853361c860f7e1 - [100%] 410.53 KB @ 750.0 MB/s + [100%] 410.53 KB @ 710.9 MB/s ==> Extracting py-scikit-build-core-0.11.5-5r47zypnbtkwfvfsodcshtfgahqrlfxq from binary cache ==> py-scikit-build-core: Successfully installed py-scikit-build-core-0.11.5-5r47zypnbtkwfvfsodcshtfgahqrlfxq Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.04s. Relocate: 0.01s. Total: 0.11s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-scikit-build-core-0.11.5-5r47zypnbtkwfvfsodcshtfgahqrlfxq ==> Installing py-scikit-build-core-0.11.5-5r47zypnbtkwfvfsodcshtfgahqrlfxq [92/94] ==> Fetching file:///mirror/blobs/sha256/81/81f33dd00b3e657306c4c0055ac4124295f75a5d8ea6f112ae5c15bac05d1a31 - [100%] 560.56 KB @ 752.6 MB/s + [100%] 560.56 KB @ 786.1 MB/s ==> Extracting py-pybind11-3.0.1-b7sx7ll7umjvkjv2qalti2iqppheryso from binary cache ==> py-pybind11: Successfully installed py-pybind11-3.0.1-b7sx7ll7umjvkjv2qalti2iqppheryso Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.04s. Relocate: 0.01s. Total: 0.20s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pybind11-3.0.1-b7sx7ll7umjvkjv2qalti2iqppheryso ==> Installing py-pybind11-3.0.1-b7sx7ll7umjvkjv2qalti2iqppheryso [93/94] ==> Fetching file:///mirror/blobs/sha256/08/0824e3670aba080202229e3bb01f3174c6a5800c3699f18e4427b1eae13de246 - [100%] 34.55 MB @ 371.3 GB/s + [100%] 34.55 MB @ 351.3 GB/s ==> Extracting py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb from binary cache ==> py-scipy: Successfully installed py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb - Search: 0.00s. Fetch: 0.06s. Install: 1.21s. Extract: 1.02s. Relocate: 0.13s. Total: 1.27s + Search: 0.00s. Fetch: 0.06s. Install: 1.20s. Extract: 1.02s. Relocate: 0.12s. Total: 1.26s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb ==> Installing py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb [94/94] diff --git a/outputs/stacks/modules-0.out b/outputs/stacks/modules-0.out index 23bfed02f..2c31359a0 100644 --- a/outputs/stacks/modules-0.out +++ b/outputs/stacks/modules-0.out @@ -48,125 +48,125 @@ $ spack install [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-12.3.0-pgwnyw7ukf64qshxkhmfe4i3mnhnz2ed [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-643vviqh75hvv5zwyghppl72gqfr64rx +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-lapack-3.12.1-rhz3ueke3w4sennowbhe5wkehj32jcyt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-zom5sydb4bski4vwb4db4ah4d6ykcxgu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz +==> Fetching file:///mirror/blobs/sha256/25/25daeac03d60a95474fbf7553190371edcc86174af832f832241ec73fd414f54 + [100%] 65.13 KB @ 318.8 MB/s +==> Extracting ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry from binary cache +==> ed: Successfully installed ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry + Search: 0.00s. Fetch: 0.19s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.27s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry +==> Installing ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry [27/84] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d ==> Fetching file:///mirror/blobs/sha256/c2/c2f0f4fb34125574915d6efb1bd909d23c17f050bf489caf7f068849ad17c845 - [100%] 197.26 KB @ 504.8 MB/s + [100%] 197.26 KB @ 511.7 MB/s ==> Extracting unzip-6.0-5gxay2amcyavgpwssxrk5dqo5brxfwyu from binary cache ==> unzip: Successfully installed unzip-6.0-5gxay2amcyavgpwssxrk5dqo5brxfwyu - Search: 0.00s. Fetch: 0.19s. Install: 0.08s. Extract: 0.04s. Relocate: 0.01s. Total: 0.27s + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/unzip-6.0-5gxay2amcyavgpwssxrk5dqo5brxfwyu -==> Installing unzip-6.0-5gxay2amcyavgpwssxrk5dqo5brxfwyu [33/84] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl +==> Installing unzip-6.0-5gxay2amcyavgpwssxrk5dqo5brxfwyu [29/84] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/25/25daeac03d60a95474fbf7553190371edcc86174af832f832241ec73fd414f54 - [100%] 65.13 KB @ 286.7 MB/s -==> Extracting ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry from binary cache -==> ed: Successfully installed ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry -==> Installing ed-1.4-4cbvnhde463fejdc77mblp3qahz7bmry [42/84] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw [+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-fn26hildnamhqbytlfpq7hnnb5buy36v +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-ikeoatlzkkhg67u2gvk66yrplhodsa7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-76oyav4s3nnn3iba2rxxip3gvv6rrybc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 ==> Fetching file:///mirror/blobs/sha256/fb/fb6095c0aa54c9731b81d568cd7bb0121c79cda2bd74129f7feefa02e0c93ef1 - [100%] 779.78 KB @ 885.6 MB/s + [100%] 779.78 KB @ 874.7 MB/s ==> Extracting lua-5.4.6-hdxlqejf6fcrrxfntvtajspsvrl5y5td from binary cache ==> lua: Successfully installed lua-5.4.6-hdxlqejf6fcrrxfntvtajspsvrl5y5td - Search: 0.00s. Fetch: 0.01s. Install: 0.17s. Extract: 0.04s. Relocate: 0.01s. Total: 0.18s + Search: 0.00s. Fetch: 0.01s. Install: 0.16s. Extract: 0.04s. Relocate: 0.01s. Total: 0.17s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/lua-5.4.6-hdxlqejf6fcrrxfntvtajspsvrl5y5td ==> Installing lua-5.4.6-hdxlqejf6fcrrxfntvtajspsvrl5y5td [66/84] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z [+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt [+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-pglf7pu6w2t7p2itr5sq5arvlc2xmrjt +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-3t7cajdej6kytam44sv3h6hermemexli [+] /home/spack/spack/opt/spack/linux-x86_64_v3/texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix +==> Fetching file:///mirror/blobs/sha256/72/721b0fb3a0da03b533e6d20ff052f20ff253e841118e3c7c62dfa6e5c36bbcd0 + [100%] 40.69 KB @ 195.3 MB/s +==> Extracting lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl from binary cache +==> lua-luafilesystem: Successfully installed lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl +==> Installing lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl [73/84] ==> Fetching file:///mirror/blobs/sha256/08/0862d1ee4b896fed55afc5afeeac9c46c53818a2950a2323ec053734836565b5 - [100%] 191.85 KB @ 507.0 MB/s + [100%] 191.85 KB @ 578.1 MB/s ==> Extracting lua-luaposix-36.1-bubs6lunhicv5qcszxwkncdjihid53w3 from binary cache ==> lua-luaposix: Successfully installed lua-luaposix-36.1-bubs6lunhicv5qcszxwkncdjihid53w3 Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.03s. Relocate: 0.02s. Total: 0.09s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/lua-luaposix-36.1-bubs6lunhicv5qcszxwkncdjihid53w3 -==> Installing lua-luaposix-36.1-bubs6lunhicv5qcszxwkncdjihid53w3 [73/84] -==> Fetching file:///mirror/blobs/sha256/72/721b0fb3a0da03b533e6d20ff052f20ff253e841118e3c7c62dfa6e5c36bbcd0 - [100%] 40.69 KB @ 222.8 MB/s -==> Extracting lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl from binary cache -==> lua-luafilesystem: Successfully installed lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.01s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl -==> Installing lua-luafilesystem-1.8.0-nsymk62hqaekjbqesij4skeuvfowkbjl [74/84] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak +==> Installing lua-luaposix-36.1-bubs6lunhicv5qcszxwkncdjihid53w3 [74/84] [+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak ==> Fetching file:///mirror/blobs/sha256/00/002f656f17730b8c990efff94daefaa91a8e401892d222ccdf17cb545b07017e - [100%] 281.36 KB @ 559.3 MB/s + [100%] 281.36 KB @ 563.8 MB/s ==> Extracting bc-1.07.1-s3qhnq46lg3r3agjjho4h44uv3tlowm2 from binary cache ==> bc: Successfully installed bc-1.07.1-s3qhnq46lg3r3agjjho4h44uv3tlowm2 - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s + Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.01s. Relocate: 0.01s. Total: 0.06s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bc-1.07.1-s3qhnq46lg3r3agjjho4h44uv3tlowm2 ==> Installing bc-1.07.1-s3qhnq46lg3r3agjjho4h44uv3tlowm2 [77/84] +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pybind11-3.0.1-b7sx7ll7umjvkjv2qalti2iqppheryso [+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-numpy-2.3.4-ucqh5kunp6zmwio5o7bazmu5gx7yxcu2 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 ==> Fetching file:///mirror/blobs/sha256/ac/acb66777bb6ab22c07d9b6732087ec2d8f805ddce3430774d7bc5fe2c25e2fff - [100%] 328.59 KB @ 549.1 MB/s + [100%] 328.59 KB @ 655.0 MB/s ==> Extracting lmod-8.7.18-gbpxgjwwypbj3hr5f7dp7wq7jabgy322 from binary cache ==> lmod: Successfully installed lmod-8.7.18-gbpxgjwwypbj3hr5f7dp7wq7jabgy322 Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.04s. Relocate: 0.04s. Total: 0.12s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/lmod-8.7.18-gbpxgjwwypbj3hr5f7dp7wq7jabgy322 ==> Installing lmod-8.7.18-gbpxgjwwypbj3hr5f7dp7wq7jabgy322 [81/84] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc [+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-yxweja4r47huk5yxgel4byighydafl5q +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-scipy-1.16.3-igjijidvsqssk52ucfm55gzaa4ug4agb ==> Updating view at /home/spack/stacks/views/full diff --git a/outputs/stacks/modules-4.out b/outputs/stacks/modules-4.out index d086712bc..22a63dae9 100644 --- a/outputs/stacks/modules-4.out +++ b/outputs/stacks/modules-4.out @@ -1,2 +1,13 @@ $ spack module lmod refresh --delete-tree -y +==> Warning: autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/nzbffup uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/ml7cem5 as the LMod compiler. +==> Warning: automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/zmzk4bb uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3/4a7thjg uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu22.04 target=x86_64_v3/zianoaa uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: git@2.48.1+man+nls+perl+subtree~tcltk build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/aim3224 uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: meson@1.8.5 build_system=python_pip patches:=0f0b1bd platform=linux os=ubuntu22.04 target=x86_64_v3/c5mkho7 uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/ml7cem5 as the LMod compiler. +==> Warning: perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3/jpuw66s uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: py-hatch-vcs@0.5.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3/44uhp2g uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: py-meson-python@0.18.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3/o6u3um7 uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: py-scikit-build-core@0.11.5~pyproject build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3/5r47zyp uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. +==> Warning: py-setuptools-scm@8.2.1+toml build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3/xcq4max uses more than one compiler, and might not fit the LMod hierarchy. Using gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 as the LMod compiler. ==> Regenerating lmod module files diff --git a/outputs/stacks/modules-5.out b/outputs/stacks/modules-5.out index 654ae885b..2b8d0f5fb 100644 --- a/outputs/stacks/modules-5.out +++ b/outputs/stacks/modules-5.out @@ -2,81 +2,80 @@ $ module load gcc $ module load openmpi openblas netlib-scalapack py-scipy $ module av ----- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/gcc/12.5.0 ---- - autoconf/2.72 +---- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/gcc/12.3.0 ---- automake/1.16.5 - berkeley-db/18.1.40 - bison/3.8.2 bzip2/1.0.8 - cmake/3.31.8 - curl/8.11.1 - diffutils/3.10 - expat/2.7.1 - findutils/4.10.0 - gdbm/1.23 + cmake/3.31.9 + curl/8.15.0 + diffutils/3.12 + expat/2.7.3 + gdbm/1.25 gettext/0.23.1 - gmake/4.4.1 - hwloc/2.11.1 + git/2.48.1 + hwloc/2.12.2 krb5/1.21.3 libbsd/0.12.2 libedit/3.1-20240808 libevent/2.1.12 - libfabric/2.2.0 - libffi/3.4.8 + libfabric/2.3.1 + libffi/3.5.2 libiconv/1.18 + libidn2/2.3.7 libmd/1.1.0 libpciaccess/0.17 - libsigsegv/2.14 - libtool/2.4.7 + libunistring/1.2 libxcrypt/4.4.38 libxml2/2.13.5 - m4/1.4.20 - meson/1.7.0 - mpich/4.3.0 - ncurses/6.5 + mpich/4.3.2 + ncurses/6.5-20250705 netlib-lapack/3.12.1 - nghttp2/1.65.0 - ninja/1.12.1 numactl/2.0.18 - openblas/0.3.29 + openblas/0.3.30 openmpi/5.0.8 openssh/9.9p1 - openssl/3.4.1 - perl/5.40.0 + openssl/3.6.0 + perl/5.42.0 pigz/2.8 - pkgconf/2.3.0 - pmix/5.0.5 - py-beniget/0.4.1 - py-cython/3.0.12 + pmix/6.0.0 + prrte/4.0.0 + py-beniget/0.4.2.post1 + py-calver/2025.4.17 + py-cython/3.1.3 py-flit-core/3.12.0 - py-gast/0.5.4 - py-meson-python/0.16.0 + py-gast/0.6.0 + py-hatch-vcs/0.5.0 + py-hatchling/1.27.0 + py-meson-python/0.18.0 py-packaging/25.0 + py-pathspec/0.12.1 py-pip/25.1.1 + py-pluggy/1.6.0 py-ply/3.11 - py-pybind11/2.13.6 + py-pybind11/3.0.1 py-pyproject-metadata/0.9.1 + py-scikit-build-core/0.11.5 + py-setuptools-scm/8.2.1 py-setuptools/80.9.0 + py-trove-classifiers/2025.9.11.17 py-wheel/0.45.1 python-venv/1.0 - python/3.13.5 - re2c/3.1 - readline/8.2 - sqlite/3.46.0 + python/3.14.0 + readline/8.3 + sqlite/3.50.4 tar/1.35 util-linux-uuid/2.41 xz/5.6.3 - yaksa/0.3 + yaksa/0.4 zlib-ng/2.2.4 zstd/1.5.7 ---- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/Core ---- autoconf-archive/2023.02.20 - ca-certificates-mozilla/2025-05-20 + ca-certificates-mozilla/2025-08-12 compiler-wrapper/1.0 - gcc-runtime/12.5.0 + gcc-runtime/12.3.0 gcc/11.4.0 - gcc/12.5.0 (L,D) + gcc/12.3.0 (L,D) glibc/2.35 (L) util-macros/1.20.1 @@ -107,7 +106,7 @@ $ module load mpich Lmod is automatically replacing "openmpi/5.0.8" -with "mpich/4.3.0". +with "mpich/4.3.2". Due to MODULEPATH changes, the following have been reloaded: @@ -116,7 +115,7 @@ Due to MODULEPATH changes, the following have been reloaded: $ module load netlib-lapack Lmod is automatically -replacing "openblas/0.3.29" +replacing "openblas/0.3.30" with "netlib-lapack/3.12.1". diff --git a/outputs/stacks/setup-2.out b/outputs/stacks/setup-2.out index 093ab00cf..5a613c86b 100644 --- a/outputs/stacks/setup-2.out +++ b/outputs/stacks/setup-2.out @@ -40,35 +40,35 @@ $ spack install [+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) [+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog +[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd [+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [+] /home/spack/spack/opt/spack/linux-x86_64_v3/texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix ==> Fetching file:///mirror/blobs/sha256/1f/1fc94cabbbd6e9c052ea3a10d368fcbd30d3b2c4f18da478323a5e354cec9596 - [100%] 651.91 MB @ 411.4 GB/s + [100%] 651.91 MB @ 371.4 GB/s ==> Extracting gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc from binary cache ==> Wrote new spec file to /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc/lib/gcc/x86_64-pc-linux-gnu/12.3.0/specs ==> gcc: Successfully installed gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc - Search: 0.00s. Fetch: 1.28s. Install: 12.99s. Extract: 11.34s. Relocate: 1.60s. Total: 14.28s + Search: 0.00s. Fetch: 1.28s. Install: 12.52s. Extract: 11.04s. Relocate: 1.44s. Total: 13.81s [+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc ==> Installing gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc [29/29]