diff --git a/_static/images/stacks-unify.svg b/_static/images/stacks-unify.svg index 2500f95e6e..787463fc94 100644 --- a/_static/images/stacks-unify.svg +++ b/_static/images/stacks-unify.svg @@ -18,4 +18,4 @@ - gcc@12 %gcc@11netlib %gcc@12 ^mpichnetlib %gcc@12 ^openmpi......Root unification set (link+run sub-DAG of the roots)...Pure build deps \ No newline at end of file + gcc@16 %gcc@15netlib %gcc@16 ^mpichnetlib %gcc@16 ^openmpi......Root unification set (link+run sub-DAG of the roots)...Pure build deps \ No newline at end of file diff --git a/outputs/stacks.sh b/outputs/stacks.sh index d34eb22d68..7566cfa954 100755 --- a/outputs/stacks.sh +++ b/outputs/stacks.sh @@ -15,44 +15,37 @@ spack env activate --create ~/stacks fake_example stacks/setup-0 "spack env activate --create ~/stacks" "/bin/true" example stacks/setup-0 "spack env status" -example stacks/setup-1 "spack add gcc@12 %gcc@11" -example stacks/setup-1 "spack env view disable" -fake_example stacks/setup-1 "spack config edit" "/bin/true" +# Simple compiler-only environment (before introducing spec groups) +cat "$project/stacks/examples/compiler.spack.stack.yaml" > ~/stacks/spack.yaml +example stacks/compiler-0 "spack concretize" +example --tee stacks/compiler-0 "spack install" -example stacks/setup-2 "spack concretize" -example stacks/setup-2 "spack install" +# Spec groups section: one spec with explicit %gcc@16 +cat "$project/stacks/examples/groups-0.spack.stack.yaml" > ~/stacks/spack.yaml +example stacks/groups-0 "spack concretize" -example stacks/unify-0 "spack add netlib-scalapack %gcc@12 ^openblas ^openmpi" -example stacks/unify-0 "spack add netlib-scalapack %gcc@12 ^openblas ^mpich" - -# 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" +# Introduce override: same spec without %gcc@16 (no output captured) +cat "$project/stacks/examples/groups-1.spack.stack.yaml" > ~/stacks/spack.yaml +# Tuning concretizer section: load yaml with two conflicting specs example stacks/unify-2 "spack config get concretizer | grep unify" -example stacks/unify-3 "spack config add concretizer:unify:false" +cat "$project/stacks/examples/1.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/unify-3 "spack concretize" -example stacks/unify-4 "spack add netlib-scalapack %gcc@12 ^netlib-lapack ^openmpi" -example stacks/unify-4 "spack add netlib-scalapack %gcc@12 ^netlib-lapack ^mpich" - +# Spec matrices section cat "$project/stacks/examples/2.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/concretize-0 "spack concretize" -example stacks/concretize-0 "spack install" - -example stacks/concretize-01 "spack find" +# Reusable definitions section cat "$project/stacks/examples/3.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/concretize-1 "spack concretize" -example stacks/concretize-1 "spack find -l" +# py-scipy with exclude cat "$project/stacks/examples/4bis.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/concretize-3 "spack concretize" -example stacks/concretize-3 "spack install" - -example stacks/concretize-4 "spack find -ld py-scipy" +# Conditional definitions section cat "$project/stacks/examples/5.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/concretize-5 "spack concretize" example stacks/concretize-5 "spack find -cl netlib-scalapack" @@ -63,6 +56,10 @@ fake_example stacks/concretize-6 "spack concretize" "/bin/true" spack concretize example stacks/concretize-6 "spack find -cl netlib-scalapack" +# Install the full stack +example --tee stacks/install-0 "spack install" + +# Environment Views section cat "$project/stacks/examples/6.spack.stack.yaml" > ~/stacks/spack.yaml example stacks/view-0 "spack concretize" @@ -70,7 +67,8 @@ example stacks/view-0 "ls ~/stacks/views/default" example stacks/view-0 "ls ~/stacks/views/default/lib" example stacks/view-0 "ls ~/stacks/views/full" example stacks/view-0 "ls ~/stacks/views/full/gcc/" -example stacks/view-0 "ls ~/stacks/views/full/gcc/gcc-12.3.0-gcc-11.4.0" +gcc_dir=$(ls ~/stacks/views/full/gcc/ | head -1) +example stacks/view-0 "ls ~/stacks/views/full/gcc/$gcc_dir" cat "$project/stacks/examples/7.spack.stack.yaml" > ~/stacks/spack.yaml @@ -79,17 +77,14 @@ example stacks/view-1 "ls ~/stacks/views/default" example stacks/view-1 "ls ~/stacks/views/default/lib" example stacks/view-1 "ls ~/stacks/views/full" -example stacks/modules-0 "spack add lmod@8.7.18 %gcc@11" -example stacks/modules-0 "spack concretize" -example stacks/modules-0 "spack install" - +# Module Files section: lmod is already installed as part of the compiler group . "$(spack location -i lmod)/lmod/lmod/init/bash" example --tee stacks/modules-1 "module --version" cat "$project/stacks/examples/8.spack.stack.yaml" > ~/stacks/spack.yaml spack module lmod refresh -y -module use "$HOME/stacks/modules/linux-ubuntu22.04-x86_64/Core" +module use "$HOME/stacks/modules/linux-ubuntu26.04-x86_64/Core" example --tee stacks/modules-2 "module av" @@ -102,10 +97,6 @@ example --tee stacks/modules-3 "module av" example --tee stacks/modules-3 "module unload gcc" module unload gcc -# TODO: Spack v1.1 compiler mixing causes name clashes in module files -# 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" diff --git a/outputs/stacks/compiler-0.out b/outputs/stacks/compiler-0.out new file mode 100644 index 0000000000..147c45a2ae --- /dev/null +++ b/outputs/stacks/compiler-0.out @@ -0,0 +1,86 @@ +$ spack concretize +==> Concretized 2 specs: +[b] vlwdxlj gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cuzgmus ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ao2onuz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] vbwvgwx ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] z7wqeps ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] k25xiih ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] xpmsy5x ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] jo3eg4r ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yhkgfai ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] y6uqrto ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] phcmfqk ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 3gdq456 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] mguwetc ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] hhjyyqy ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] punbqrx ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] gxmoxea ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] melg7ga ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] sf5iutv ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] bvphs3b ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 27d4iyp ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cbtgjrh ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] cq4dkuc ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ohmdb2l ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] jvlaabk ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] sle3ix4 ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ujlg2ua ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] f5xe4px ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] afklka7 ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ekvivpv ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] g72d7i3 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 63aruxk ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] wf22jsg lmod@8.7.67+auto_swap~redirect build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ywyq4f5 ^bc@1.08.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] litd2mh ^ed@1.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] q66mudl ^lua@5.4.8+shared build_system=makefile fetcher=curl platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] j2fa7xl ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] 4lyasaz ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 33yozp5 ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] axeuqg3 ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 4qgksuy ^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=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] su5b2hs ^lua-luafilesystem@1.9.0 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] egzwtik ^lua-luaposix@36.3 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] bkzcu2s ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] yvl6jpi ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ci53fkm ^procps@4.0.6+nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] a27iqiv ^sed@4.9 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] d4ibosb ^tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 + +$ spack install +[ ] d4ibosb tcl@8.6.17 fetching from build cache (0s) +[ ] 4qgksuy unzip@6.0 fetching from build cache (0s) +[ ] k25xiih readline@8.3 fetching from build cache (0s) +[ ] 4qgksuy unzip@6.0 relocating (0s) +[ ] 4lyasaz nghttp2@1.67.1 fetching from build cache (0s) +[ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) +[ ] d4ibosb tcl@8.6.17 relocating (0s) +[ ] k25xiih readline@8.3 relocating (0s) +[ ] 4lyasaz nghttp2@1.67.1 relocating (0s) +[+] 4qgksuy unzip@6.0 /home/spack/spack/opt/spack/linux-x86_64_v3/unzip-6.0-4qgksuyohalb7cfo76mqqjlmndeh3tyg (0s) +[+] k25xiih readline@8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-k25xiihp5dun6qwe3e5ouzdigwr5yuvz (0s) +[+] 4lyasaz nghttp2@1.67.1 /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.67.1-4lyasazuklpnvidiw4ty5wvybxvkh7na (0s) +[ ] vlwdxlj gcc@16.1.0 relocating (0s) +[ ] j2fa7xl curl@8.20.0 fetching from build cache (0s) +[ ] j2fa7xl curl@8.20.0 relocating (0s) +[+] j2fa7xl curl@8.20.0 /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.20.0-j2fa7xlzdvkagqked76erodvcmcd2oqp (0s) +[ ] q66mudl lua@5.4.8 fetching from build cache (0s) +[ ] q66mudl lua@5.4.8 relocating (0s) +[+] q66mudl lua@5.4.8 /home/spack/spack/opt/spack/linux-x86_64_v3/lua-5.4.8-q66mudlsappt33u2frzcijegjay54ep3 (0s) +[ ] egzwtik lua-luaposix@36.3 fetching from build cache (0s) +[ ] su5b2hs lua-luafilesystem@1.9.0 fetching from build cache (0s) +[ ] egzwtik lua-luaposix@36.3 relocating (0s) +[ ] su5b2hs lua-luafilesystem@1.9.0 relocating (0s) +[+] su5b2hs lua-luafilesystem@1.9.0 /home/spack/spack/opt/spack/linux-x86_64_v3/lua-luafilesystem-1.9.0-su5b2hsgwgk2a4b7hkys2r23kf3me6lh (0s) +[+] egzwtik lua-luaposix@36.3 /home/spack/spack/opt/spack/linux-x86_64_v3/lua-luaposix-36.3-egzwtikjsfubsjiqpwdjemys3xqv2ytf (1s) +[+] d4ibosb tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-d4ibosbgfm7536ij2dmdu6nnll5g5zpm (1s) +[ ] wf22jsg lmod@8.7.67 fetching from build cache (0s) +[ ] wf22jsg lmod@8.7.67 relocating (0s) +[+] wf22jsg lmod@8.7.67 /home/spack/spack/opt/spack/linux-x86_64_v3/lmod-8.7.67-wf22jsggn5vfsyoyuqm6ban76y7333we (0s) +[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/stacks/compiler-find-0.out b/outputs/stacks/compiler-find-0.out deleted file mode 100644 index 37e921e531..0000000000 --- a/outputs/stacks/compiler-find-0.out +++ /dev/null @@ -1,5 +0,0 @@ -$ spack compiler find "$(spack location -i gcc)" -==> Added 1 new compiler to /home/spack/stacks/spack.yaml - gcc@12.3.0 -==> Compilers are defined in the following files: - /home/spack/.spack/linux/compilers.yaml /home/spack/stacks/spack.yaml diff --git a/outputs/stacks/compiler-find-1.out b/outputs/stacks/compiler-find-1.out deleted file mode 100644 index 86c1d5383e..0000000000 --- a/outputs/stacks/compiler-find-1.out +++ /dev/null @@ -1,2 +0,0 @@ -$ spack location -i gcc -/home/spack/spack/opt/spack/linux-ubuntu22.04-x86_64_v3/gcc-11.4.0/gcc-12.3.0-jjgfqpdmihb2cq5ca7txia5oshruq56q diff --git a/outputs/stacks/compiler-list-0.out b/outputs/stacks/compiler-list-0.out deleted file mode 100644 index 6ef523e9f3..0000000000 --- a/outputs/stacks/compiler-list-0.out +++ /dev/null @@ -1,7 +0,0 @@ -$ spack compiler list -==> Available compilers --- clang ubuntu22.04-x86_64 ------------------------------------- -clang@14.0.0 - --- gcc ubuntu22.04-x86_64 --------------------------------------- -gcc@12.3.0 gcc@11.4.0 gcc@10.5.0 diff --git a/outputs/stacks/concretize-0.out b/outputs/stacks/concretize-0.out index 7dfa58a983..4f32671bc2 100644 --- a/outputs/stacks/concretize-0.out +++ b/outputs/stacks/concretize-0.out @@ -1,438 +1,99 @@ $ spack concretize +==> Concretizing the 'stack' group of specs ==> Starting concretization pool with 2 processes ==> Concretized 2 specs: - - pglf7pu netlib-scalapack@2.2.2~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@12.3.0 - - 4a7thjg ^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 - - zianoaa ^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 -[+] ft5kpbd ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - q4fenfo ^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 -[+] etqlnw5 ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ytk4y2k ^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 - - 4tglvhv ^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 -[+] ntccuj2 ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] fmnvqo4 ^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 -[+] 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 -[+] irhvzch ^gawk@5.3.1~nls build_system=autotools 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 -[+] c6d2zlj ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[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 -[+] 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 -[+] 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 -[+] lxvpwti ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] sczvrku ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=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 -[+] 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 -[+] k6ygirs ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 - - pgwnyw7 ^gcc-runtime@12.3.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 - - uaioo2h ^mpich@4.3.2~argobots~cuda+fortran+hwloc+hydra~level_zero+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.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 - - wkj6z6m ^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@12.3.0 - - 7imejdf ^libfabric@2.3.1~cuda~debug~kdreg~level_zero~rocm~uring build_system=autotools fabrics:=sockets,tcp,udp platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - p7g23cj ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] hwxnwvm ^util-macros@1.20.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - idam6zh ^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 - - g3zxoz6 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 643vviq ^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 -[+] f4qiprw ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - 7jn3viv ^yaksa@0.4~cuda~level_zero~rocm build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - yvs3szq ^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 - - ikeoatl ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - zb37a5t ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - cq4lpjp ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 3f5v73y ^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 - - wfarfth ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - bs2taxm ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - s56v4gf ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - eyfbskp ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - plzt2nd ^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 - - b4npzn6 ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - fj5u5hm ^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 - - rhz3uek ^netlib-lapack@3.12.1~external-blas~ipo+lapacke+pic+shared~xblas build_system=cmake build_type=Release generator=make patches:=3059ebf,b1af8b6,e318340 platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@12.3.0 - - apaz22o netlib-scalapack@2.2.2~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@12.3.0 - - p2gmhau ^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@12.3.0 - - nzbffup ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - zmzk4bb ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - fn26hil ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - t2nikrt ^numactl@2.0.18 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - lip7jtp ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - onmo4bv ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.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 - - msusunh ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - c5o6gvv ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - drjmmlw ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - jpuw66s ^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 - - zom5syd ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - y5bsvao ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 76oyav4 ^pmix@6.0.0~munge~python build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - zalt7cs ^prrte@4.0.0 build_system=autotools schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.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 +[b] v7thz7n netlib-scalapack@2.2.3~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] yonurps ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 6b5h3dv ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iiwpnp7 ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] djpmji7 ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] yoq4amm ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] axeuqg3 ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] iehcspo ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yd7lgm7 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] vlwdxlj ^gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cuzgmus ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] yvl6jpi ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ao2onuz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] vbwvgwx ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] z7wqeps ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] k25xiih ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] xpmsy5x ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] jo3eg4r ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yhkgfai ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] y6uqrto ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] phcmfqk ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 3gdq456 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] mguwetc ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] hhjyyqy ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] punbqrx ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] gxmoxea ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] melg7ga ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] sf5iutv ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] bvphs3b ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 27d4iyp ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cbtgjrh ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] cq4dkuc ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ohmdb2l ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] jvlaabk ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] sle3ix4 ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ujlg2ua ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] f5xe4px ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] afklka7 ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ekvivpv ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] g72d7i3 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 63aruxk ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ghfita3 ^gcc-runtime@16.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 6hzfsbp ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bovk7dt ^mpich@5.0.1~argobots~cuda+fortran+hwloc+hydra~level_zero+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] l3if3dy ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] g3gt6ze ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] tw6253j ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4diropt ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] nn3ymay ^hwloc@2.13.0~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static patches:=b4db98b platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] s6cemsy ^libfabric@2.5.1~asan~cuda~debug~kdreg~level_zero~lsan~rocm~tsan~ubsan~uring build_system=autotools fabrics:=sockets,tcp,udp platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cmgnxt6 ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cy6lybd ^util-macros@1.20.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] cxesrxa ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qs6av53 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bf6e7x2 ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xp6fyih ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] afnel7p ^python@3.14.5+bz2+ctypes+dbm~debug~freethreading+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~static~tests~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ofahxlj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xkvh6gd ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] t623nqz ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] w3w22wx ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 2af63my ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] jgqwv65 ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] cbnh7bw ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] uliuxbf ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] v3sdaph ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] lq6tsmz ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] zknpbz3 ^netlib-lapack@3.12.1~external-blas~ipo+lapacke+pic+shared~xblas build_system=cmake build_type=Release generator=make patches:=3059ebf,b1af8b6,e318340 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] 2zi5wtu netlib-scalapack@2.2.3~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] nzr6pd7 ^openmpi@5.0.10+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 patches:=646eb1a romio-filesystem:=none schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] yg7nv7p ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 47vgtt5 ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] r6vd65h ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] pdslnit ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] m5ts755 ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] raf5qk6 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] fc5ezqn ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] swhw6f5 ^numactl@2.0.19 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] kjx2nfr ^openssh@10.3p1+gssapi build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] awic2yh ^krb5@1.22.2+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yws52fh ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 4c4uuub ^libedit@3.1-20251016 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 44jhzjg ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xxg272q ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] aev2xm7 ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 3w5zzn3 ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qcxnkrd ^pmix@6.1.0~munge~python build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cj2ohvh ^prrte@4.1.0 build_system=autotools patches:=64faa1a,91b28f5 schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4p7olya ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 -$ spack install -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /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/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/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /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/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/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc -==> Fetching file:///mirror/blobs/sha256/36/36172444f4f2bb59d9c46d83a54e80f6b53f70ab5768074e9205b1c1b87fc873 - [100%] 19.80 MB @ 382.5 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.21s. Install: 0.46s. Extract: 0.40s. Relocate: 0.04s. Total: 0.68s -[+] /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/e9/e97c67351cfa8c848abedbbf642835f1d646723cfa9f1259bb973420bf22db51 - [100%] 176.78 KB @ 661.4 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 [23/68] -==> Fetching file:///mirror/blobs/sha256/ff/ff0044f4698c048ab4a225c71b0e7e5d8c6c902d4eeee7010343dbad8803b5cf - [100%] 93.01 KB @ 419.9 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/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd -==> Installing libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd [24/68] -==> Fetching file:///mirror/blobs/sha256/29/29613d409d98fb74f79f9b80ed750f77d5c80a4c67038a6580985d8611eb9c3b - [100%] 61.26 MB @ 451.3 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.16s. Extract: 0.06s. Relocate: 0.01s. Total: 0.17s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t -==> Installing libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t [25/68] -==> Fetching file:///mirror/blobs/sha256/86/862c573b5bef92d895569fa027e03913df8fff50fa9490b29faec83668897933 - [100%] 63.82 MB @ 471.6 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.14s. 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/fc/fcab35e1e2b8b1ac6104ce475a848415564d9a6b6e2ee25641bd19ac1daa8532 - [100%] 24.13 MB @ 471.7 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.58s. Extract: 0.52s. Relocate: 0.03s. Total: 0.62s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm -==> Installing openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm [27/68] -==> Fetching file:///mirror/blobs/sha256/f3/f31bb9ea0b55f915a9d6adf2e586d545541104e33e7635a62a86ca71b61ebcc6 - [100%] 62.16 MB @ 451.4 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.06s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly -==> Installing libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly [28/68] -==> Fetching file:///mirror/blobs/sha256/41/41f2130514252891e6c314cecaf4a52055b27d244fb7101864dd61d1a2087804 - [100%] 181.45 KB @ 667.6 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/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk -==> Installing libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk [29/68] -==> Fetching file:///mirror/blobs/sha256/f9/f9a5ab24dbae32b158abfff1177d2600787e7a09e902f5692967bcc2aa8549dc - [100%] 223.87 KB @ 739.9 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 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq -==> Installing zlib-ng-2.2.4-4tglvhvqq7j2ftxifhnwsqx7ykr2gdiq [30/68] -==> Fetching file:///mirror/blobs/sha256/58/58598af6ef3e490496ac23b2deb5734aa393484b5d18dc1035cab0bd3c9be2ae - [100%] 61.83 MB @ 471.8 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 [31/68] -==> Fetching file:///mirror/blobs/sha256/6e/6e3df487eecba3fdcb80039153b860279f89f7d7fe5d257897ec1fd14fcb791e - [100%] 66.90 MB @ 562.2 GB/s -==> Extracting ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb from binary cache -==> ncurses: Successfully installed ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb - Search: 0.00s. Fetch: 0.01s. 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 [32/68] -==> Fetching file:///mirror/blobs/sha256/86/865d78f9fc5654ff92ec4a1d58beea89732ebc1d7a0f516611fb038dd8f6b97a - [100%] 61.56 MB @ 531.7 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.03s. 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 @ 471.0 GB/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.10s -[+] /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/0e/0eeb5b2d0a3c05e415efdc30fa7dd71d997ce5ffb024ccce8afc60746e4ec94c - [100%] 61.13 MB @ 631.6 GB/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/diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns -==> Installing diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns [35/68] -==> Fetching file:///mirror/blobs/sha256/2f/2f26acbf32bf55c31b3de49c96c5d859685365fa4450f9c8c24b647692428f0a - [100%] 94.20 KB @ 429.5 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 [36/68] -==> Fetching file:///mirror/blobs/sha256/1c/1cea6db67250561dd1373dc9670e764f9bd4d1a2db16419aed63c78c4e3fb059 - [100%] 62.72 MB @ 431.8 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.19s. Extract: 0.07s. Relocate: 0.01s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d -==> Installing libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d [37/68] -==> Fetching file:///mirror/blobs/sha256/e9/e9d8fec78b25d94d102e47a5dd47d72183ae15ceb15b4cb9b05bd04e027b94b0 - [100%] 61.67 MB @ 431.7 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/readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k -==> Installing readline-8.3-eyfbskp7ur7n6y3ceyawjxyncivdlo3k [38/68] -==> Fetching file:///mirror/blobs/sha256/32/324c4ccb22f78c92b236568acb2da1e09c59771808f29c40cafb6402bbf731d1 - [100%] 905.22 KB @ 441.4 GB/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.07s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef -==> Installing libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef [39/68] -==> Fetching file:///mirror/blobs/sha256/1b/1be051dbb0f6934499136055dd4f9bf8cf503081b6de57e687c080378120ba80 - [100%] 636.27 KB @ 471.3 GB/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/34/34e8cea4eb46b5807dece8e59b0b598c87af1cec25310557de4df6afcca1acd9 - [100%] 294.79 KB @ 806.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 [41/68] -==> Fetching file:///mirror/blobs/sha256/21/21c47a6f0358fbd071972268ba8bf53a3a03bf6bd5d91142e14e4c1aa1eb757c - [100%] 64.96 MB @ 432.2 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.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf -==> Installing hwloc-2.12.2-wkj6z6mxkax4joosfjb3j6c55b7lqzuf [42/68] -==> Fetching file:///mirror/blobs/sha256/89/8964358e0481e7c998f1230ff59859b619ba331783c35723c33722fce7b34a6e - [100%] 10.85 MB @ 472.4 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.25s. Extract: 0.20s. Relocate: 0.02s. Total: 0.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq -==> Installing sqlite-3.50.4-plzt2ndvbqjwuh52b5es4vkokl5voxxq [43/68] -==> Fetching file:///mirror/blobs/sha256/76/76ff26587fa3e1f2dd890da3b097517feae500866b81207fd5d457b3b274154e - [100%] 961.91 KB @ 471.5 GB/s -==> Extracting gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj from binary cache -==> gdbm: Successfully installed gdbm-1.25-y5bsvao3cxpaqhcskqoe2wwm4reknblj - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. 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 [44/68] -==> Fetching file:///mirror/blobs/sha256/5f/5fa5f095a919483f2a90b969dff19bc1f8d0f6fb8cfab861976bedd2591f3860 - [100%] 61.27 MB @ 481.7 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.01s. 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 @ 452.4 GB/s -==> Extracting perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage from binary cache -==> perl: Successfully installed perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage - Search: 0.00s. Fetch: 0.02s. Install: 0.76s. Extract: 0.63s. Relocate: 0.10s. Total: 0.79s -[+] /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 @ 452.5 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.69s. Extract: 0.53s. Relocate: 0.03s. Total: 0.71s -[+] /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 @ 472.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 [48/68] -==> Fetching file:///mirror/blobs/sha256/1a/1a81221c52b2afa4b6f99340ee1b621ed6bb3ee2b5e35b9a943b358555dfcddd - [100%] 744.42 KB @ 431.2 GB/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 @ 401.5 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] -==> Fetching file:///mirror/blobs/sha256/5e/5e7eafb9fd0f7cc61c2c32ca35d98b88f343174b8c89743ced108fbb319cd019 - [100%] 62.87 MB @ 472.0 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] -==> Fetching file:///mirror/blobs/sha256/d6/d65881cbe8859834a37e6b54c6fa0fddd637046905b5039a30464235c6151caa - [100%] 61.27 MB @ 431.5 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] -==> Fetching file:///mirror/blobs/sha256/09/094ee8e5047a450a9b1cdfad98834cb3ccff10f0f334a05725cb5a2cc0a4c812 - [100%] 98.78 MB @ 452.5 GB/s -==> Extracting python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 from binary cache -==> python: Successfully installed python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 - Search: 0.00s. Fetch: 0.12s. Install: 3.34s. Extract: 3.11s. Relocate: 0.11s. Total: 3.45s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 -==> Installing python-3.14.0-yvs3szqzvvdlgtd5oih22mie2uyjgz42 [53/68] -==> Fetching file:///mirror/blobs/sha256/a1/a1f963fa003e46337cc051275b09233f0177fc5f3623d50ae22feceaf41606ad - [100%] 61.97 MB @ 511.8 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.15s. 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 @ 371.2 GB/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] -==> Fetching file:///mirror/blobs/sha256/28/28ba9baff735b81352c4bad8ab64b6ea66027700414916fb16864cca30e7fff9 - [100%] 66.40 MB @ 392.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.01s. 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] -==> Fetching file:///mirror/blobs/sha256/d8/d811fdb2a0072d2cae1a35bdfb03d5a06d2e0c3cde85e53e988b283d1c5381cf - [100%] 29.85 MB @ 592.6 GB/s -==> Extracting cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku from binary cache -==> cmake: Successfully installed cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku - Search: 0.00s. Fetch: 0.04s. Install: 1.15s. Extract: 1.07s. Relocate: 0.05s. Total: 1.19s -[+] /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 @ 391.9 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.23s. Extract: 0.07s. Relocate: 0.04s. Total: 0.24s -[+] /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/de/de3cbf2d958183636005db17720a60422a0c80633cf667cdd27517b30e9bf1da - [100%] 63.84 MB @ 482.1 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 [59/68] -==> Fetching file:///mirror/blobs/sha256/05/0569b4297d99ee9477064f75a150f847a27d25c96922219f56801bfbab932779 - [100%] 398.05 KB @ 966.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 [60/68] -==> Fetching file:///mirror/blobs/sha256/00/00732a5a39401d9757fab35e1dab15cc6f35ca2b6372091a58f099e992dbed47 - [100%] 64.86 MB @ 512.2 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.18s. 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 @ 522.4 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.26s. Extract: 0.21s. Relocate: 0.02s. Total: 0.28s -[+] /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 @ 452.5 GB/s -==> Extracting mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa from binary cache -==> mpich: Successfully installed mpich-4.3.2-uaioo2homcambwkqlfarew27bk6dqgqa - Search: 0.00s. Fetch: 0.02s. Install: 0.96s. Extract: 0.89s. Relocate: 0.03s. 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 @ 522.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.02s. Install: 0.81s. Extract: 0.65s. Relocate: 0.12s. Total: 0.84s -[+] /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 @ 521.9 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 [65/68] -==> Fetching file:///mirror/blobs/sha256/0a/0a453b08ef1a681c9bde495eeb29e416b91b5c46cde573767ff61fd2524f2ba8 - [100%] 62.72 MB @ 441.9 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 [66/68] -==> Fetching file:///mirror/blobs/sha256/9d/9dc420645aca7c0b19bb8eba80b5781d3e688b6b2f1a6b8cb8b5a57b3425d394 - [100%] 62.73 MB @ 371.8 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.22s. Extract: 0.06s. Relocate: 0.03s. Total: 0.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc -==> Installing netlib-scalapack-2.2.2-apaz22ojhzvggduhgoqhdd2paxix3azc [67/68] -==> Fetching file:///mirror/blobs/sha256/14/140755102624721dcb4e526fd3aad57a7e612d977a05f94f2f8f97cd6fea7408 - [100%] 62.73 MB @ 431.9 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.13s. Extract: 0.06s. Relocate: 0.03s. Total: 0.14s -[+] /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-01.out b/outputs/stacks/concretize-01.out deleted file mode 100644 index 98f58a004e..0000000000 --- a/outputs/stacks/concretize-01.out +++ /dev/null @@ -1,44 +0,0 @@ -$ spack find -==> In environment /home/spack/stacks -==> 5 root specs --- no arch / no compilers --------------------------------------- -[+] gcc@12 [+] netlib-scalapack [+] netlib-scalapack -[+] netlib-scalapack [+] netlib-scalapack - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@12.3.0 ------ -mpich@4.3.2 openblas@0.3.30 openmpi@5.0.8 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -berkeley-db@18.1.40 gcc@12.3.0 m4@1.4.20 texinfo@7.2 -bison@3.8.2 gettext@0.23.1 ncurses@6.5-20250705 zlib-ng@2.0.7 -flex@2.6.3 gmp@6.3.0 nghttp2@1.48.0 zstd@1.5.7 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@12.3.0 -------------- -cmake@3.31.9 gettext@0.23.1 libffi@3.5.2 openssl@3.6.0 zstd@1.5.7 -curl@8.15.0 hwloc@2.12.2 ncurses@6.5-20250705 python@3.14.0 -expat@2.7.3 krb5@1.21.3 openssh@9.9p1 zlib-ng@2.2.4 - --- linux-ubuntu22.04-x86_64_v3 / %c,fortran=gcc@12.3.0 ---------- -netlib-lapack@3.12.1 netlib-scalapack@2.2.2 netlib-scalapack@2.2.2 -netlib-scalapack@2.2.2 netlib-scalapack@2.2.2 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -automake@1.16.5 gawk@5.3.1 libsigsegv@2.14 mpfr@4.2.1 readline@8.3 -bzip2@1.0.8 gdbm@1.25 libtool@2.4.7 perl@5.42.0 tar@1.35 -diffutils@3.12 gmake@4.4.1 libxml2@2.13.5 pigz@2.8 xz@5.6.3 -findutils@4.10.0 libiconv@1.18 mpc@1.3.1 pkgconf@2.5.1 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@12.3.0 ------------------ -automake@1.16.5 libedit@3.1-20240808 libpciaccess@0.17 pigz@2.8 tar@1.35 -bzip2@1.0.8 libevent@2.1.12 libxcrypt@4.4.38 pmix@6.0.0 util-linux-uuid@2.41 -diffutils@3.12 libfabric@2.3.1 libxml2@2.13.5 prrte@4.0.0 xz@5.6.3 -gdbm@1.25 libiconv@1.18 numactl@2.0.18 readline@8.3 yaksa@0.4 -libbsd@0.12.2 libmd@1.1.0 perl@5.42.0 sqlite@3.50.4 - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -autoconf@2.72 compiler-wrapper@1.0 glibc@2.35 -autoconf@2.72 gcc@11.4.0 util-macros@1.20.1 -autoconf-archive@2023.02.20 gcc-runtime@11.4.0 -ca-certificates-mozilla@2025-08-12 gcc-runtime@12.3.0 -==> 86 installed packages -==> 0 concretized packages to be installed (show with `spack find -c`) diff --git a/outputs/stacks/concretize-1.out b/outputs/stacks/concretize-1.out index f886e77f0f..39f337f3ed 100644 --- a/outputs/stacks/concretize-1.out +++ b/outputs/stacks/concretize-1.out @@ -1,57 +1,2 @@ $ spack concretize ==> No new specs to concretize. -$ spack find -l -==> In environment /home/spack/stacks -==> 5 root specs --- no arch / no compilers --------------------------------------- -[+] fmnvqo4 gcc@12 [+] 3t7cajd netlib-scalapack [+] yxweja4 netlib-scalapack -[+] pglf7pu netlib-scalapack [+] apaz22o netlib-scalapack - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@12.3.0 ------ -uaioo2h mpich@4.3.2 dwjd7g2 openblas@0.3.30 p2gmhau openmpi@5.0.8 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -vdgigsw berkeley-db@18.1.40 cakgj4n gettext@0.23.1 ft5kpbd nghttp2@1.48.0 -n7yzkyl bison@3.8.2 mj4re3l gmp@6.3.0 k6ygirs texinfo@7.2 -gmhq65u flex@2.6.3 lxvpwti m4@1.4.20 qlavhjb zlib-ng@2.0.7 -fmnvqo4 gcc@12.3.0 ncdxq3j ncurses@6.5-20250705 foiizhd zstd@1.5.7 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@12.3.0 -------------- -4a7thjg cmake@3.31.9 onmo4bv krb5@1.21.3 yvs3szq python@3.14.0 -zianoaa curl@8.15.0 s56v4gf libffi@3.5.2 4tglvhv zlib-ng@2.2.4 -ikeoatl expat@2.7.3 ytk4y2k ncurses@6.5-20250705 fj5u5hm zstd@1.5.7 -3f5v73y gettext@0.23.1 lip7jtp openssh@9.9p1 -wkj6z6m hwloc@2.12.2 q4fenfo openssl@3.6.0 - --- linux-ubuntu22.04-x86_64_v3 / %c,fortran=gcc@12.3.0 ---------- -rhz3uek netlib-lapack@3.12.1 apaz22o netlib-scalapack@2.2.2 -pglf7pu netlib-scalapack@2.2.2 yxweja4 netlib-scalapack@2.2.2 -3t7cajd netlib-scalapack@2.2.2 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -pzmnwzm automake@1.16.5 qtepnkr libiconv@1.18 kaz756e pigz@2.8 -x7t4naj bzip2@1.0.8 bs5ujst libsigsegv@2.14 f4qiprw pkgconf@2.5.1 -cih4xrz diffutils@3.12 yt7ajy4 libtool@2.4.7 c6d2zlj readline@8.3 -irvryts findutils@4.10.0 5trxrsw libxml2@2.13.5 lfgvgva tar@1.35 -irhvzch gawk@5.3.1 sczvrku mpc@1.3.1 yzaocbs xz@5.6.3 -aq7qwy6 gdbm@1.25 m3nwalt mpfr@4.2.1 -4obn7cg gmake@4.4.1 62kt5y4 perl@5.42.0 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@12.3.0 ------------------ -zmzk4bb automake@1.16.5 g3zxoz6 libiconv@1.18 76oyav4 pmix@6.0.0 -zom5syd bzip2@1.0.8 cq4lpjp libmd@1.1.0 zalt7cs prrte@4.0.0 -msusunh diffutils@3.12 p7g23cj libpciaccess@0.17 eyfbskp readline@8.3 -y5bsvao gdbm@1.25 drjmmlw libxcrypt@4.4.38 plzt2nd sqlite@3.50.4 -zb37a5t libbsd@0.12.2 idam6zh libxml2@2.13.5 wfarfth tar@1.35 -c5o6gvv libedit@3.1-20240808 t2nikrt numactl@2.0.18 b4npzn6 util-linux-uuid@2.41 -fn26hil libevent@2.1.12 jpuw66s perl@5.42.0 643vviq xz@5.6.3 -7imejdf libfabric@2.3.1 bs2taxm pigz@2.8 7jn3viv yaksa@0.4 - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -nzbffup autoconf@2.72 ml7cem5 gcc@11.4.0 -fgsf5ij autoconf@2.72 nokfxva gcc-runtime@11.4.0 -7p7gq7u autoconf-archive@2023.02.20 pgwnyw7 gcc-runtime@12.3.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 qg7qyaz glibc@2.35 -ntccuj2 compiler-wrapper@1.0 hwxnwvm util-macros@1.20.1 -==> 86 installed packages -==> 0 concretized packages to be installed (show with `spack find -c`) diff --git a/outputs/stacks/concretize-2.out b/outputs/stacks/concretize-2.out deleted file mode 100644 index 5b53c2701f..0000000000 --- a/outputs/stacks/concretize-2.out +++ /dev/null @@ -1,336 +0,0 @@ -$ spack concretize -==> Starting concretization pool with 2 processes -==> Environment concretized in 37.77 seconds -==> Concretized gcc@12%gcc@11 -[+] hc3fmfi gcc@12.3.0%gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages='c,c++,fortran' arch=linux-ubuntu22.04-x86_64_v3 -[+] mhzfdlk ^diffutils@3.10%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3duehf4 ^gawk@5.3.0%gcc@11.4.0~nls build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] jwy3fyz ^libsigsegv@2.14%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] cb6x34k ^readline@8.2%gcc@11.4.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] f47qm6q ^gcc-runtime@11.4.0%gcc@11.4.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] a7drdl4 ^glibc@2.35%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] qfrotcc ^gmake@4.4.1%gcc@11.4.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] 5znqdnf ^gmp@6.2.1%gcc@11.4.0+cxx build_system=autotools libs=shared,static patches=69ad2e2 arch=linux-ubuntu22.04-x86_64_v3 -[+] ljmgup2 ^autoconf@2.72%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] p742yhm ^automake@1.16.5%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 7d6p4sf ^m4@1.4.19%gcc@11.4.0+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-ubuntu22.04-x86_64_v3 -[+] lop7htu ^libtool@2.4.7%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] v4yzc2w ^findutils@4.9.0%gcc@11.4.0 build_system=autotools patches=440b954 arch=linux-ubuntu22.04-x86_64_v3 -[+] t7z22ep ^mpc@1.3.1%gcc@11.4.0 build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] c42jb45 ^mpfr@4.2.1%gcc@11.4.0 build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] rq5jepf ^autoconf-archive@2023.02.20%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] uliw6sp ^perl@5.38.0%gcc@11.4.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] br27jq6 ^berkeley-db@18.1.40%gcc@11.4.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] qmy6dpi ^bzip2@1.0.8%gcc@11.4.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] ohbrdtp ^gdbm@1.23%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] y6pez2a ^texinfo@7.0.3%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] eux6e6v ^gettext@0.22.5%gcc@11.4.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] jv5es2y ^libxml2@2.10.3%gcc@11.4.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] wx4xfdn ^tar@1.34%gcc@11.4.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] gk55zt7 ^pigz@2.8%gcc@11.4.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] syttnnt ^xz@5.4.6%gcc@11.4.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] gk4xs2i ^ncurses@6.5%gcc@11.4.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] h3x3l7s ^pkgconf@2.2.0%gcc@11.4.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] xqtp62n ^zlib-ng@2.1.6%gcc@11.4.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ew3aaos ^zstd@1.5.6%gcc@11.4.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized netlib-scalapack%gcc@12 ^openblas ^openmpi -[+] 4kiidhc netlib-scalapack@2.2.0%gcc@12.3.0~ipo~pic+shared build_system=cmake build_type=Release generator=make patches=072b006,1c9ce5f,244a9aa arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] eyhwdj2 ^openblas@0.3.26%gcc@12.3.0~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] itcqz6x ^openmpi@5.0.3%gcc@12.3.0~atomics~cuda~gpfs~internal-hwloc~internal-libevent~internal-pmix~java~legacylaunchers~lustre~memchecker~openshmem~orterunprefix~romio+rsh~static+vt+wrapper-rpath build_system=autotools fabrics=none romio-filesystem=none schedulers=none arch=linux-ubuntu22.04-x86_64_v3 -[+] so7orfs ^autoconf@2.72%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lvqszzi ^m4@1.4.19%gcc@12.3.0+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-ubuntu22.04-x86_64_v3 -[+] y3txxwv ^libsigsegv@2.14%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] sssghcu ^automake@1.16.5%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ui75hni ^hwloc@2.9.1%gcc@12.3.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] zf3qbx3 ^libpciaccess@0.17%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 5ir45vn ^util-macros@1.19.3%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] 3jhmflq ^libevent@2.1.12%gcc@12.3.0+openssl build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3qfbro ^libtool@2.4.7%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lu6imec ^findutils@4.9.0%gcc@12.3.0 build_system=autotools patches=440b954 arch=linux-ubuntu22.04-x86_64_v3 -[+] ycvznwt ^numactl@2.0.14%gcc@12.3.0 build_system=autotools patches=4e1d78c,62fc8a8,ff37630 arch=linux-ubuntu22.04-x86_64_v3 -[+] witkwii ^openssh@9.7p1%gcc@12.3.0+gssapi build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] nn5dx4c ^krb5@1.20.1%gcc@12.3.0+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] nleqxiv ^bison@3.8.2%gcc@12.3.0~color build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] ri7efzb ^libedit@3.1-20230828%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] dsrozes ^pmix@5.0.1%gcc@12.3.0~docs+pmi_backwards_compatibility~python~restful build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized netlib-scalapack%gcc@12 ^mpich ^openblas -[+] bhtne2a netlib-scalapack@2.2.0%gcc@12.3.0~ipo~pic+shared build_system=cmake build_type=Release generator=make patches=072b006,1c9ce5f,244a9aa arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] kkrar7t ^mpich@4.2.1%gcc@12.3.0~argobots~cuda+fortran+hwloc+hydra+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default arch=linux-ubuntu22.04-x86_64_v3 -[+] lu6imec ^findutils@4.9.0%gcc@12.3.0 build_system=autotools patches=440b954 arch=linux-ubuntu22.04-x86_64_v3 -[+] ui75hni ^hwloc@2.9.1%gcc@12.3.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] rgjhj7a ^libfabric@1.21.0%gcc@12.3.0~debug~kdreg~uring build_system=autotools fabrics=sockets,tcp,udp arch=linux-ubuntu22.04-x86_64_v3 -[+] zf3qbx3 ^libpciaccess@0.17%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3qfbro ^libtool@2.4.7%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 5ir45vn ^util-macros@1.19.3%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] pztnzd3 ^yaksa@0.3%gcc@12.3.0~cuda~rocm build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] so7orfs ^autoconf@2.72%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] sssghcu ^automake@1.16.5%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lvqszzi ^m4@1.4.19%gcc@12.3.0+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-ubuntu22.04-x86_64_v3 -[+] y3txxwv ^libsigsegv@2.14%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ciwhyra ^python@3.11.7%gcc@12.3.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=13fa8bf,b0615b2,ebdca64,f2fd060 arch=linux-ubuntu22.04-x86_64_v3 -[+] syod3as ^expat@2.6.2%gcc@12.3.0+libbsd build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3xlyij ^libbsd@0.12.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri2ny52 ^libmd@1.0.4%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] cl63ri3 ^libffi@3.4.6%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] q5uuhah ^sqlite@3.43.2%gcc@12.3.0+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ofkdrzu ^util-linux-uuid@2.38.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] eyhwdj2 ^openblas@0.3.26%gcc@12.3.0~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized netlib-scalapack%gcc@12 ^netlib-lapack ^openmpi -[+] cknsmak netlib-scalapack@2.2.0%gcc@12.3.0~ipo~pic+shared build_system=cmake build_type=Release generator=make patches=072b006,1c9ce5f,244a9aa arch=linux-ubuntu22.04-x86_64_v3 -[+] xyma4ep ^amdblis@4.2%gcc@12.3.0~aocl_gemm+blas+cblas~ilp64~logging+suphandling~tracing build_system=makefile libs=shared,static threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] ciwhyra ^python@3.11.7%gcc@12.3.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=13fa8bf,b0615b2,ebdca64,f2fd060 arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] syod3as ^expat@2.6.2%gcc@12.3.0+libbsd build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3xlyij ^libbsd@0.12.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri2ny52 ^libmd@1.0.4%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] cl63ri3 ^libffi@3.4.6%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] q5uuhah ^sqlite@3.43.2%gcc@12.3.0+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ofkdrzu ^util-linux-uuid@2.38.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] vvhuv65 ^netlib-lapack@3.11.0%gcc@12.3.0~external-blas~ipo+lapacke+shared~xblas build_system=cmake build_type=Release generator=make arch=linux-ubuntu22.04-x86_64_v3 -[+] itcqz6x ^openmpi@5.0.3%gcc@12.3.0~atomics~cuda~gpfs~internal-hwloc~internal-libevent~internal-pmix~java~legacylaunchers~lustre~memchecker~openshmem~orterunprefix~romio+rsh~static+vt+wrapper-rpath build_system=autotools fabrics=none romio-filesystem=none schedulers=none arch=linux-ubuntu22.04-x86_64_v3 -[+] so7orfs ^autoconf@2.72%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lvqszzi ^m4@1.4.19%gcc@12.3.0+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-ubuntu22.04-x86_64_v3 -[+] y3txxwv ^libsigsegv@2.14%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] sssghcu ^automake@1.16.5%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ui75hni ^hwloc@2.9.1%gcc@12.3.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] zf3qbx3 ^libpciaccess@0.17%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 5ir45vn ^util-macros@1.19.3%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3jhmflq ^libevent@2.1.12%gcc@12.3.0+openssl build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3qfbro ^libtool@2.4.7%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lu6imec ^findutils@4.9.0%gcc@12.3.0 build_system=autotools patches=440b954 arch=linux-ubuntu22.04-x86_64_v3 -[+] ycvznwt ^numactl@2.0.14%gcc@12.3.0 build_system=autotools patches=4e1d78c,62fc8a8,ff37630 arch=linux-ubuntu22.04-x86_64_v3 -[+] witkwii ^openssh@9.7p1%gcc@12.3.0+gssapi build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] nn5dx4c ^krb5@1.20.1%gcc@12.3.0+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] nleqxiv ^bison@3.8.2%gcc@12.3.0~color build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri7efzb ^libedit@3.1-20230828%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] dsrozes ^pmix@5.0.1%gcc@12.3.0~docs+pmi_backwards_compatibility~python~restful build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized netlib-scalapack%gcc@12 ^mpich ^netlib-lapack -[+] q7ooqre netlib-scalapack@2.2.0%gcc@12.3.0~ipo~pic+shared build_system=cmake build_type=Release generator=make patches=072b006,1c9ce5f,244a9aa arch=linux-ubuntu22.04-x86_64_v3 -[+] xyma4ep ^amdblis@4.2%gcc@12.3.0~aocl_gemm+blas+cblas~ilp64~logging+suphandling~tracing build_system=makefile libs=shared,static threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] ciwhyra ^python@3.11.7%gcc@12.3.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=13fa8bf,b0615b2,ebdca64,f2fd060 arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] syod3as ^expat@2.6.2%gcc@12.3.0+libbsd build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3xlyij ^libbsd@0.12.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri2ny52 ^libmd@1.0.4%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] cl63ri3 ^libffi@3.4.6%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] q5uuhah ^sqlite@3.43.2%gcc@12.3.0+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ofkdrzu ^util-linux-uuid@2.38.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] kkrar7t ^mpich@4.2.1%gcc@12.3.0~argobots~cuda+fortran+hwloc+hydra+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default arch=linux-ubuntu22.04-x86_64_v3 -[+] lu6imec ^findutils@4.9.0%gcc@12.3.0 build_system=autotools patches=440b954 arch=linux-ubuntu22.04-x86_64_v3 -[+] ui75hni ^hwloc@2.9.1%gcc@12.3.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] rgjhj7a ^libfabric@1.21.0%gcc@12.3.0~debug~kdreg~uring build_system=autotools fabrics=sockets,tcp,udp arch=linux-ubuntu22.04-x86_64_v3 -[+] zf3qbx3 ^libpciaccess@0.17%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3qfbro ^libtool@2.4.7%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 5ir45vn ^util-macros@1.19.3%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] pztnzd3 ^yaksa@0.3%gcc@12.3.0~cuda~rocm build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] so7orfs ^autoconf@2.72%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] sssghcu ^automake@1.16.5%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] lvqszzi ^m4@1.4.19%gcc@12.3.0+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-ubuntu22.04-x86_64_v3 -[+] y3txxwv ^libsigsegv@2.14%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] vvhuv65 ^netlib-lapack@3.11.0%gcc@12.3.0~external-blas~ipo+lapacke+shared~xblas build_system=cmake build_type=Release generator=make arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized py-scipy%gcc@12 ^openblas - - 3accefe py-scipy@1.13.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] eyhwdj2 ^openblas@0.3.26%gcc@12.3.0~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - - bsef5cj ^py-cython@3.0.8%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - 7iqxefn ^py-setuptools@69.2.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - ol54hmz ^py-meson-python@0.15.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - the5myj ^meson@1.3.2%gcc@12.3.0 build_system=python_pip patches=0f0b1bd arch=linux-ubuntu22.04-x86_64_v3 - - 5kcqkc6 ^py-pyproject-metadata@0.7.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - rzruklu ^py-packaging@23.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - vioo2gj ^py-flit-core@3.9.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - lmjalxf ^py-numpy@1.26.4%gcc@12.3.0 build_system=python_pip patches=873745d arch=linux-ubuntu22.04-x86_64_v3 - - uc7d3fn ^py-pip@23.1.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - ts4hcnh ^py-pybind11@2.12.0%gcc@12.3.0~ipo build_system=cmake build_type=Release generator=ninja arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - - 53tomx2 ^ninja@1.11.1%gcc@12.3.0+re2c build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - mfbo7dd ^re2c@2.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - yb2yrlm ^py-pythran@0.15.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - 54x2nx3 ^py-beniget@0.4.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - qeywms6 ^py-gast@0.5.4%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - yyr4tu6 ^py-ply@3.11%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - aqfgdmf ^py-wheel@0.41.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] ciwhyra ^python@3.11.7%gcc@12.3.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=13fa8bf,b0615b2,ebdca64,f2fd060 arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] syod3as ^expat@2.6.2%gcc@12.3.0+libbsd build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3xlyij ^libbsd@0.12.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri2ny52 ^libmd@1.0.4%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] cl63ri3 ^libffi@3.4.6%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] q5uuhah ^sqlite@3.43.2%gcc@12.3.0+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ofkdrzu ^util-linux-uuid@2.38.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - - p6vzj63 ^python-venv@1.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - -==> Concretized py-scipy%gcc@12 ^netlib-lapack - - arwcuqh py-scipy@1.13.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 -[+] hbicyv7 ^gcc-runtime@12.3.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[e] gkoh6ax ^glibc@2.35%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] vvhuv65 ^netlib-lapack@3.11.0%gcc@12.3.0~external-blas~ipo+lapacke+shared~xblas build_system=cmake build_type=Release generator=make arch=linux-ubuntu22.04-x86_64_v3 -[+] 636pa3o ^cmake@3.27.9%gcc@12.3.0~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-ubuntu22.04-x86_64_v3 -[+] 7du7zou ^curl@8.7.1%gcc@12.3.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-ubuntu22.04-x86_64_v3 -[+] tmufr6s ^nghttp2@1.57.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] 3eefcyu ^gmake@4.4.1%gcc@12.3.0~guile build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] eyhwdj2 ^openblas@0.3.26%gcc@12.3.0~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=none arch=linux-ubuntu22.04-x86_64_v3 -[+] ucv4k3y ^perl@5.38.0%gcc@12.3.0+cpanm+opcode+open+shared+threads build_system=generic patches=714e4d1 arch=linux-ubuntu22.04-x86_64_v3 -[+] wekshz6 ^berkeley-db@18.1.40%gcc@12.3.0+cxx~docs+stl build_system=autotools patches=26090f4,b231fcc arch=linux-ubuntu22.04-x86_64_v3 -[+] 2t42aln ^pkgconf@2.2.0%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - - bsef5cj ^py-cython@3.0.8%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - 7iqxefn ^py-setuptools@69.2.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - ol54hmz ^py-meson-python@0.15.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - the5myj ^meson@1.3.2%gcc@12.3.0 build_system=python_pip patches=0f0b1bd arch=linux-ubuntu22.04-x86_64_v3 - - 5kcqkc6 ^py-pyproject-metadata@0.7.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - rzruklu ^py-packaging@23.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - vioo2gj ^py-flit-core@3.9.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - lf5ml2y ^py-numpy@1.26.4%gcc@12.3.0 build_system=python_pip patches=873745d arch=linux-ubuntu22.04-x86_64_v3 - - uc7d3fn ^py-pip@23.1.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - ts4hcnh ^py-pybind11@2.12.0%gcc@12.3.0~ipo build_system=cmake build_type=Release generator=ninja arch=linux-ubuntu22.04-x86_64_v3 - - 53tomx2 ^ninja@1.11.1%gcc@12.3.0+re2c build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - mfbo7dd ^re2c@2.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - - pztxizz ^py-pythran@0.15.0%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - 54x2nx3 ^py-beniget@0.4.1%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - qeywms6 ^py-gast@0.5.4%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - yyr4tu6 ^py-ply@3.11%gcc@12.3.0 build_system=python_pip arch=linux-ubuntu22.04-x86_64_v3 - - aqfgdmf ^py-wheel@0.41.2%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] ciwhyra ^python@3.11.7%gcc@12.3.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=13fa8bf,b0615b2,ebdca64,f2fd060 arch=linux-ubuntu22.04-x86_64_v3 -[+] q4g6mhd ^bzip2@1.0.8%gcc@12.3.0~debug~pic+shared build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] 6qrh24v ^diffutils@3.10%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] syod3as ^expat@2.6.2%gcc@12.3.0+libbsd build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] h3xlyij ^libbsd@0.12.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ri2ny52 ^libmd@1.0.4%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] e6zxtqt ^gdbm@1.23%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] x2uvezl ^gettext@0.22.5%gcc@12.3.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] upw4yvr ^libxml2@2.10.3%gcc@12.3.0+pic~python+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ddxcrg5 ^tar@1.34%gcc@12.3.0 build_system=autotools zip=pigz arch=linux-ubuntu22.04-x86_64_v3 -[+] 7lweqai ^pigz@2.8%gcc@12.3.0 build_system=makefile arch=linux-ubuntu22.04-x86_64_v3 -[+] vvj7472 ^zstd@1.5.6%gcc@12.3.0+programs build_system=makefile compression=none libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] cl63ri3 ^libffi@3.4.6%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] m7la4pp ^libxcrypt@4.4.35%gcc@12.3.0~obsolete_api build_system=autotools patches=4885da3 arch=linux-ubuntu22.04-x86_64_v3 -[+] bu5gu2m ^ncurses@6.5%gcc@12.3.0~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-ubuntu22.04-x86_64_v3 -[+] oxocupu ^openssl@3.3.0%gcc@12.3.0~docs+shared build_system=generic certs=mozilla arch=linux-ubuntu22.04-x86_64_v3 -[+] a2gxp4h ^ca-certificates-mozilla@2023-05-30%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 -[+] lhm6hsy ^readline@8.2%gcc@12.3.0 build_system=autotools patches=bbf97f1 arch=linux-ubuntu22.04-x86_64_v3 -[+] q5uuhah ^sqlite@3.43.2%gcc@12.3.0+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] ofkdrzu ^util-linux-uuid@2.38.1%gcc@12.3.0 build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 -[+] f7j6s4z ^xz@5.4.6%gcc@12.3.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu22.04-x86_64_v3 -[+] klmqckv ^zlib-ng@2.1.6%gcc@12.3.0+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-ubuntu22.04-x86_64_v3 - - p6vzj63 ^python-venv@1.0%gcc@12.3.0 build_system=generic arch=linux-ubuntu22.04-x86_64_v3 - diff --git a/outputs/stacks/concretize-3.out b/outputs/stacks/concretize-3.out index e5b7aa7726..decd58a9d7 100644 --- a/outputs/stacks/concretize-3.out +++ b/outputs/stacks/concretize-3.out @@ -1,376 +1,117 @@ $ spack concretize +==> Concretizing the 'stack' group of specs ==> Starting concretization ==> Concretized 1 spec: - - igjijid py-scipy@1.16.3 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.0 -[+] ntccuj2 ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] fmnvqo4 ^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 -[+] 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 -[+] irhvzch ^gawk@5.3.1~nls build_system=autotools 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 -[+] c6d2zlj ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[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 -[+] 4obn7cg ^gmake@4.4.1~guile build_system=generic 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 -[+] 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 -[+] lxvpwti ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] sczvrku ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=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 -[+] 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 -[+] k6ygirs ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 -[+] pgwnyw7 ^gcc-runtime@12.3.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 -[+] dwjd7g2 ^openblas@0.3.30~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=openmp platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.0 -[+] f4qiprw ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - apuchub ^py-cython@3.1.3 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - urwrpfo ^py-setuptools@80.9.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - o6u3um7 ^py-meson-python@0.18.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - c5mkho7 ^meson@1.8.5 build_system=python_pip patches:=0f0b1bd 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 -[+] 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 -[+] zgro4tw ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] 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 -[+] 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 -[+] axmwics ^re2c@3.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - j3t7cjg ^py-packaging@25.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - 55omqj2 ^py-flit-core@3.12.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - sypchiv ^py-pyproject-metadata@0.9.1 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - ucqh5ku ^py-numpy@2.3.4 build_system=python_pip patches:=873745d platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - qwew5rg ^py-pip@25.1.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - b7sx7ll ^py-pybind11@3.0.1+ipo build_system=cmake build_type=Release generator=ninja platform=linux os=ubuntu22.04 target=x86_64_v3 %cxx=gcc@12.3.0 -[+] 4a7thjg ^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 -[+] zianoaa ^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 -[+] ft5kpbd ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - 5r47zyp ^py-scikit-build-core@0.11.5~pyproject build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.0 - - 44uhp2g ^py-hatch-vcs@0.5.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - xcq4max ^py-setuptools-scm@8.2.1+toml build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - aim3224 ^git@2.48.1+man+nls+perl+subtree~tcltk build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] nzbffup ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] zmzk4bb ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - gntupl3 ^libidn2@2.3.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - x5b7oet ^libunistring@1.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] lip7jtp ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] onmo4bv ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.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 -[+] c5o6gvv ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] drjmmlw ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.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 - - qb7x6jy ^py-hatchling@1.27.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - 2c2amjc ^py-pluggy@1.6.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - cwn5qw7 ^py-trove-classifiers@2025.9.11.17 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - gnnyu6h ^py-calver@2025.4.17 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - wvr3fhe ^py-pathspec@0.12.1 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - w4fhoiy ^py-pythran@0.18.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 %cxx=gcc@12.3.0 - - g6mqwbr ^py-beniget@0.4.2.post1 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - xrd6sez ^py-gast@0.6.0 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - xgx3hu4 ^py-ply@3.11 build_system=python_pip platform=linux os=ubuntu22.04 target=x86_64_v3 - - vs4xbx3 ^py-wheel@0.45.1 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] yvs3szq ^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 -[+] zom5syd ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] msusunh ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] ikeoatl ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] zb37a5t ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] cq4lpjp ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] y5bsvao ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] 3f5v73y ^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 -[+] g3zxoz6 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] idam6zh ^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 -[+] wfarfth ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] bs2taxm ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] s56v4gf ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ytk4y2k ^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 -[+] q4fenfo ^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 -[+] etqlnw5 ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] jpuw66s ^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 -[+] eyfbskp ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] plzt2nd ^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 -[+] b4npzn6 ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] 643vviq ^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 -[+] 4tglvhv ^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 -[+] fj5u5hm ^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 - - nrdm37j ^python-venv@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 +[b] gouabck py-scipy@1.17.1 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] vlwdxlj ^gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cuzgmus ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] yvl6jpi ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ao2onuz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] vbwvgwx ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] z7wqeps ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] k25xiih ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] xpmsy5x ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] jo3eg4r ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yhkgfai ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] y6uqrto ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] phcmfqk ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 3gdq456 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] mguwetc ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] hhjyyqy ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] punbqrx ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] gxmoxea ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] melg7ga ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] sf5iutv ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] bvphs3b ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 27d4iyp ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cbtgjrh ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] cq4dkuc ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ohmdb2l ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] jvlaabk ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] sle3ix4 ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ujlg2ua ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] f5xe4px ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] afklka7 ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ekvivpv ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] g72d7i3 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 63aruxk ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ghfita3 ^gcc-runtime@16.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 6mel4bl ^meson@1.11.1 build_system=python_pip patches:=0f0b1bd platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yqhdh2x ^ninja@1.13.2+re2c build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] rcco4zy ^re2c@4.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ytwnkqf ^py-setuptools@82.0.1 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] kdylbqh ^openblas@0.3.33~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared~static build_system=makefile patches:=723ddc1 symbol_suffix=none threads=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] 6hzfsbp ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xp6fyih ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 3ggpdjv ^py-cython@3.2.4 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] c6oww3b ^py-meson-python@0.19.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] x55wsqe ^py-packaging@26.2 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] hn6pbjh ^py-flit-core@3.12.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] cuihsxt ^py-pyproject-metadata@0.11.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 7g2cva3 ^py-numpy@2.4.6 build_system=python_pip patches:=873745d platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 5p3frq3 ^py-pip@26.1 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 3iqsk4i ^py-pybind11@3.0.2+ipo build_system=cmake build_type=Release generator=ninja platform=linux os=ubuntu26.04 target=x86_64_v3 %cxx=gcc@16.1.0 +[b] yonurps ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 6b5h3dv ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iiwpnp7 ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 5anzcvk ^py-scikit-build-core@0.12.2~pyproject build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] 4qnonii ^py-hatch-vcs@0.5.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] psffea6 ^py-setuptools-scm@9.2.2+toml build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] loixb6c ^git@2.53.0+man+nls+perl+subtree~tcltk build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] yg7nv7p ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] pdslnit ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 6hwe4tz ^libidn2@2.3.8 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] iyz34h3 ^libunistring@1.4.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] raf5qk6 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] fc5ezqn ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] l3if3dy ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 47vgtt5 ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] r6vd65h ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] kjx2nfr ^openssh@10.3p1+gssapi build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] awic2yh ^krb5@1.22.2+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yws52fh ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 4c4uuub ^libedit@3.1-20251016 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 44jhzjg ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] wttcr2f ^pcre2@10.44~jit+multibyte+pic build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] dxgdks3 ^py-hatchling@1.29.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] etdouzz ^py-pluggy@1.6.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] cj7d3wo ^py-trove-classifiers@2026.6.1.19 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] t7ufmfz ^py-calver@2025.10.20 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ble4v64 ^py-pathspec@1.1.1 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 36lyfl6 ^py-pythran@0.18.1 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 %cxx=gcc@16.1.0 +[b] k7zfexy ^py-beniget@0.4.2.post1 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 5nakdbl ^py-gast@0.6.0 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] kbtru35 ^py-ply@3.11 build_system=python_pip platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yygojb3 ^py-wheel@0.45.1 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] afnel7p ^python@3.14.5+bz2+ctypes+dbm~debug~freethreading+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~static~tests~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ofahxlj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] djpmji7 ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xkvh6gd ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] t623nqz ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] w3w22wx ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 2af63my ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] g3gt6ze ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] qs6av53 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cxesrxa ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] tw6253j ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4diropt ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] jgqwv65 ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iehcspo ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yoq4amm ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] axeuqg3 ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] xxg272q ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] aev2xm7 ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 3w5zzn3 ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cbnh7bw ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] uliuxbf ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] v3sdaph ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bf6e7x2 ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] yd7lgm7 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] lq6tsmz ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] bcclnnz ^python-venv@1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 -$ spack install -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /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/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/libiconv-1.18-g3zxoz6huo7tpvkqhsmrmogb4wp6mzly -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-7imejdfjnycxqaiaswob5cylcjiwal3t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-dwjd7g2k2xnn4qekllidmd3mbibk2pmm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ytk4y2kvs7h2vlkltndotzgejrlj4ylb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-t2nikrtxvuwdjvtutokwb374p2sbinlr -[+] /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/yaksa-0.4-7jn3vivsnjknixt6nr4il7jdglpprcob -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-cq4lpjpcxcz5lrsu7twuxqlfcvxw4x5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-s56v4gfjyubrphm3pwte4xkkpzsbalmd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-p7g23cjqjlm6bqct2miagkzxxxq76jjk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-drjmmlw4cw7xa42jvz2zkj7fhmvflbzs -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-b4npzn6ixc2runjxjalulilgkmhpnmeq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-fj5u5hmzffnxn433whymaz2n5uhajwqw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /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/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ninja-1.13.0-2stmhpcux6apkymvlm34reuwmddvngjm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-bs2taxmcalqybzx3ekltr74adkskotaz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pcre2-10.44-z5vjj7qwopnby63vu35fgh5ojadzfc4x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-c5o6gvvaovwqjx4d6dei3437rycaxpef -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-q4fenforztsbdicbojnnh2ursudyzygb -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-idam6zhjw4pckpaqppqomwiivjkuyu5d -[+] /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-eyfbskp7ur7n6y3ceyawjxyncivdlo3k -[+] /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/libbsd-0.12.2-zb37a5t5npeobk3tjjqcukstmpiwgv5b -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-msusunhi5vdgrgniq3n6f6el4d3sdmns -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-wfarfthvpwnuxoxzaznsrvply2sgx2zl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-zianoaa5jzrbwhxsmm7bnhaxrdbq6jpb -[+] /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/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -[+] /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/gettext-0.23.1-3f5v73yqnfdtac6tgkv43ceywl5ujlbt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-4a7thjgehxuwjfswyxnyoquuj5lmtzku -[+] /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/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-jpuw66splunzfj35iooigoy5bpzpmage -[+] /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-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/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-nzbffupyigbbaxqhjt4qxa2tdt6ezhxb -==> Fetching file:///mirror/blobs/sha256/81/814bb309cb856dddb13d4d98e061a15b8ba3eec88ccc77c023f5ba5d334f4df5 - [100%] 17.79 KB @ 107.8 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.09s. Extract: 0.04s. Relocate: 0.01s. Total: 0.28s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak -==> Installing python-venv-1.0-nrdm37joniuvt4jfj6tajmu3za4vkpak [60/94] -==> Fetching file:///mirror/blobs/sha256/bd/bd4a5a9651c3f67b2d3eacbbe8f8e7f32e0db6bec82089542ee4c74b9606383c - [100%] 63.28 MB @ 461.8 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.07s. Relocate: 0.01s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps -==> Installing libunistring-1.2-x5b7oeto7bjq43zcvwutli3l6atwbvps [61/94] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-onmo4bvd2j5t6x3udrswlorxjaxxmc3z -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-zalt7csrlsooyok5gqhodzwtab3qvoc3 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-zmzk4bb3og3uivh4e75edsiyc3pjid55 -==> Fetching file:///mirror/blobs/sha256/a6/a6d81e462f8065bbacf57740c65fa85e638cad01bdd4c3dd31c99f31ea8680fa - [100%] 64.18 MB @ 582.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.35s. Extract: 0.22s. Relocate: 0.01s. Total: 0.36s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz -==> Installing py-pip-25.1.1-qwew5rgzuujgyohcvicralh7ftlbovfz [65/94] -==> Fetching file:///mirror/blobs/sha256/6e/6e871d5a6e612e1cfa930b5d5ecf61910720ca704aca344c7484c64a5e18cc4c - [100%] 521.92 KB @ 441.1 GB/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 [66/94] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-lip7jtpgcoxwbzodoemijlvwudtfkjz5 -==> Fetching file:///mirror/blobs/sha256/0d/0d4dead6e72865c30b79abf0966ef4929438668153c5494ef40a3c63c858f266 - [100%] 63.02 MB @ 442.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.25s. Extract: 0.20s. Relocate: 0.01s. Total: 0.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft -==> Installing py-setuptools-80.9.0-urwrpfosir5bsqujgsywyinsjltws5ft [68/94] -==> Fetching file:///mirror/blobs/sha256/18/184a896cdfc7520a22f84afe1ed8f950429f4f9ecd181251bc0737970cab23fa - [100%] 202.72 KB @ 658.1 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] -==> Fetching file:///mirror/blobs/sha256/6e/6ef69795d15b583c186d375fc9b2b4310df1c0108f66ec99a525aca6b498389b - [100%] 63.56 MB @ 422.6 GB/s -==> Extracting git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu from binary cache -==> git: Successfully installed git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu - Search: 0.00s. Fetch: 0.08s. Install: 1.37s. Extract: 1.19s. Relocate: 0.14s. Total: 1.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu -==> Installing git-2.48.1-aim32246bedbrqnty77sopsyhea6gwcu [70/94] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-p2gmhau5kodki37wh5qws6a6b3jclhf6 -==> Fetching file:///mirror/blobs/sha256/4e/4e44dfcc1e6b3781705ef00e627647add329779aa3cee51f6b2c118a59154bd2 - [100%] 137.36 KB @ 544.0 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 [72/94] -==> Fetching file:///mirror/blobs/sha256/05/05468a8127a10d28153e2c6c43b9e00aad774c993727726b004d90e7faebe181 - [100%] 141.85 KB @ 565.0 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.17s. Extract: 0.01s. Relocate: 0.01s. Total: 0.17s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b -==> Installing py-ply-3.11-xgx3hu4hlcph2m57ehnmndnp76tmju6b [73/94] -==> Fetching file:///mirror/blobs/sha256/3f/3fdbe64a0223f88017656e072a0c834e1d9812518669de26b3945316a7037d67 - [100%] 63.09 MB @ 522.0 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 [74/94] -==> Fetching file:///mirror/blobs/sha256/70/702d48b4c1e390c3e0b3f55dd651bd3d30113e4f61413be9d3a3acd8d5d667c6 - [100%] 15.06 MB @ 452.4 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.02s. Install: 0.45s. Extract: 0.35s. Relocate: 0.06s. Total: 0.47s -[+] /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/60/60054f411e5e4792e707f485791b9342d8fdbb9882cde6d8b8a45064e82a4a7b - [100%] 80.75 KB @ 352.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.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp -==> Installing py-gast-0.6.0-xrd6sez3xnzdg3fjs34whdod3msbamgp [76/94] -==> Fetching file:///mirror/blobs/sha256/1a/1af3c86479ca912856ba95337d685cc8c567b90bc60f4f89d04409c196d9fa69 - [100%] 22.90 KB @ 116.4 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.06s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj -==> Installing py-calver-2025.4.17-gnnyu6h5kxryhtjplbj6gn3ojdyzamxj [77/94] -[+] /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 -==> Fetching file:///mirror/blobs/sha256/bc/bc6d75995d7beef0e1d74b08be8b2e80ebbd2384c8a56a02ae74867115547005 - [100%] 72.06 KB @ 317.1 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.16s. Extract: 0.01s. Relocate: 0.01s. Total: 0.17s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n -==> Installing py-pathspec-0.12.1-wvr3fheyxtq7r63itflim6rf55mxpk4n [80/94] -==> Fetching file:///mirror/blobs/sha256/0d/0d88c32ed44b626a50154210f9befa1ab9c519bdabdb4aecc4f3e77a17580caf - [100%] 181.82 KB @ 628.2 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.07s. Extract: 0.01s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo -==> Installing py-packaging-25.0-j3t7cjg7qdefoqnyiycarurgegdq3rzo [81/94] -==> Fetching file:///mirror/blobs/sha256/5c/5c54a464640f8879cf84c3fb44f49fd5748a4d5edb03ddb040faf1ce841df1b4 - [100%] 68.34 KB @ 279.9 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.07s -[+] /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 @ 233.3 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] -==> Fetching file:///mirror/blobs/sha256/f9/f99d6c344e2a4d8118297a8399978fa7ab007f69980f025e878e7d04690366cb - [100%] 124.74 KB @ 543.3 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 @ 324.4 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.15s. Extract: 0.01s. Relocate: 0.01s. Total: 0.16s -[+] /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 @ 340.2 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 @ 425.2 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.08s -[+] /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 @ 725.4 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 @ 472.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.66s. Extract: 0.45s. Relocate: 0.05s. Total: 0.68s -[+] /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 @ 113.3 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.08s -[+] /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 @ 372.0 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.79s. Extract: 0.72s. Relocate: 0.02s. Total: 0.80s -[+] /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 @ 993.0 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.11s. 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 @ 501.1 GB/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.21s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s -[+] /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 @ 532.4 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.05s. Install: 1.20s. Extract: 1.02s. Relocate: 0.11s. Total: 1.24s -[+] /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/concretize-4.out b/outputs/stacks/concretize-4.out deleted file mode 100644 index 74b62253fb..0000000000 --- a/outputs/stacks/concretize-4.out +++ /dev/null @@ -1,145 +0,0 @@ -$ spack find -ld py-scipy -==> In environment /home/spack/stacks -==> 6 root specs --- no arch / no compilers --------------------------------------- -[+] fmnvqo4 gcc@12 - - ------- gcc@11 - -[+] pglf7pu netlib-scalapack - - ------- gcc@12 - - ------- mpich - - ------- netlib-lapack - -[+] 3t7cajd netlib-scalapack - - ------- gcc@12 - - ------- mpich - - ------- openblas - -[+] apaz22o netlib-scalapack - - ------- gcc@12 - - ------- netlib-lapack - - ------- openmpi - -[+] yxweja4 netlib-scalapack - - ------- gcc@12 - - ------- openblas - - ------- openmpi - -[+] igjijid py-scipy - - ------- gcc@12 - - ------- openblas - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@12.3.0 ------ -igjijid py-scipy@1.16.3 -ntccuj2 compiler-wrapper@1.0 -fmnvqo4 gcc@12.3.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irhvzch gawk@5.3.1 -bs5ujst libsigsegv@2.14 -c6d2zlj readline@8.3 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -4obn7cg gmake@4.4.1 -mj4re3l gmp@6.3.0 -fgsf5ij autoconf@2.72 -pzmnwzm automake@1.16.5 -lxvpwti m4@1.4.20 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -sczvrku mpc@1.3.1 -m3nwalt mpfr@4.2.1 -7p7gq7u autoconf-archive@2023.02.20 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -k6ygirs texinfo@7.2 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -qlavhjb zlib-ng@2.0.7 -foiizhd zstd@1.5.7 -pgwnyw7 gcc-runtime@12.3.0 -qg7qyaz glibc@2.35 -dwjd7g2 openblas@0.3.30 -f4qiprw pkgconf@2.5.1 -apuchub py-cython@3.1.3 -urwrpfo py-setuptools@80.9.0 -o6u3um7 py-meson-python@0.18.0 -c5mkho7 meson@1.8.5 -2stmhpc ninja@1.13.0 -rbf2x4i python@3.11.14 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -zgro4tw libffi@3.5.2 -yiij42p libxcrypt@4.4.38 -gv7wpik openssl@3.6.0 -elvodyb sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -axmwics re2c@3.1 -j3t7cjg py-packaging@25.0 -55omqj2 py-flit-core@3.12.0 -sypchiv py-pyproject-metadata@0.9.1 -ucqh5ku py-numpy@2.3.4 -qwew5rg py-pip@25.1.1 -b7sx7ll py-pybind11@3.0.1 -4a7thjg cmake@3.31.9 -zianoaa curl@8.15.0 -ft5kpbd nghttp2@1.48.0 -5r47zyp py-scikit-build-core@0.11.5 -44uhp2g py-hatch-vcs@0.5.0 -xcq4max py-setuptools-scm@8.2.1 -aim3224 git@2.48.1 -nzbffup autoconf@2.72 -zmzk4bb automake@1.16.5 -gntupl3 libidn2@2.3.7 -x5b7oet libunistring@1.2 -lip7jtp openssh@9.9p1 -onmo4bv krb5@1.21.3 -n7yzkyl bison@3.8.2 -c5o6gvv libedit@3.1-20240808 -drjmmlw libxcrypt@4.4.38 -z5vjj7q pcre2@10.44 -qb7x6jy py-hatchling@1.27.0 -2c2amjc py-pluggy@1.6.0 -cwn5qw7 py-trove-classifiers@2025.9.11.17 -gnnyu6h py-calver@2025.4.17 -wvr3fhe py-pathspec@0.12.1 -w4fhoiy py-pythran@0.18.0 -g6mqwbr py-beniget@0.4.2.post1 -xrd6sez py-gast@0.6.0 -xgx3hu4 py-ply@3.11 -vs4xbx3 py-wheel@0.45.1 -yvs3szq python@3.14.0 -zom5syd bzip2@1.0.8 -msusunh diffutils@3.12 -ikeoatl expat@2.7.3 -zb37a5t libbsd@0.12.2 -cq4lpjp libmd@1.1.0 -y5bsvao gdbm@1.25 -3f5v73y gettext@0.23.1 -g3zxoz6 libiconv@1.18 -idam6zh libxml2@2.13.5 -wfarfth tar@1.35 -bs2taxm pigz@2.8 -s56v4gf libffi@3.5.2 -ytk4y2k ncurses@6.5-20250705 -q4fenfo openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -jpuw66s perl@5.42.0 -eyfbskp readline@8.3 -plzt2nd sqlite@3.50.4 -b4npzn6 util-linux-uuid@2.41 -643vviq xz@5.6.3 -4tglvhv zlib-ng@2.2.4 -fj5u5hm zstd@1.5.7 -nrdm37j python-venv@1.0 - -==> 1 installed package -==> 0 concretized packages to be installed (show with `spack find -c`) diff --git a/outputs/stacks/concretize-5.out b/outputs/stacks/concretize-5.out index 90bbccd71a..ec9178c6fc 100644 --- a/outputs/stacks/concretize-5.out +++ b/outputs/stacks/concretize-5.out @@ -1,13 +1,14 @@ $ spack concretize ==> No new specs to concretize. $ spack find -cl netlib-scalapack -==> In environment /home/spack/stacks -==> 4 root specs --- no arch / no compilers --------------------------------------- -[+] fmnvqo4 gcc@12 [+] 3t7cajd netlib-scalapack -[+] pglf7pu netlib-scalapack [+] igjijid py-scipy +==> In environment /home/spack/stacks (5 root specs) +-- root specs / compiler ---------------------------------------- +[+] vlwdxlj gcc@16 [+] wf22jsg lmod@8.7.67 --- linux-ubuntu22.04-x86_64_v3 / %c,fortran=gcc@12.3.0 ---------- -[+] pglf7pu netlib-scalapack@2.2.2 [+] 3t7cajd netlib-scalapack@2.2.2 -==> 2 installed packages -==> 0 concretized packages to be installed +-- root specs / stack ------------------------------------------- +[b] v7thz7n netlib-scalapack [b] x425zhl netlib-scalapack [b] gouabck py-scipy + +-- linux-ubuntu26.04-x86_64_v3 / %c,fortran=gcc@16.1.0 ---------- +[b] v7thz7n netlib-scalapack@2.2.3 [b] x425zhl netlib-scalapack@2.2.3 +==> 0 installed packages +==> 2 concretized packages to be installed diff --git a/outputs/stacks/concretize-6.out b/outputs/stacks/concretize-6.out index 4bdfd00ba4..4745b1c6da 100644 --- a/outputs/stacks/concretize-6.out +++ b/outputs/stacks/concretize-6.out @@ -1,14 +1,16 @@ $ export SPACK_STACK_USE_OPENMPI=1 $ spack concretize $ spack find -cl netlib-scalapack -==> In environment /home/spack/stacks -==> 6 root specs --- no arch / no compilers --------------------------------------- -[+] fmnvqo4 gcc@12 [+] 3t7cajd netlib-scalapack [+] yxweja4 netlib-scalapack -[+] pglf7pu netlib-scalapack [+] apaz22o netlib-scalapack [+] igjijid py-scipy +==> In environment /home/spack/stacks (7 root specs) +-- root specs / compiler ---------------------------------------- +[+] vlwdxlj gcc@16 [+] wf22jsg lmod@8.7.67 --- linux-ubuntu22.04-x86_64_v3 / %c,fortran=gcc@12.3.0 ---------- -[+] pglf7pu netlib-scalapack@2.2.2 [+] apaz22o netlib-scalapack@2.2.2 -[+] 3t7cajd netlib-scalapack@2.2.2 [+] yxweja4 netlib-scalapack@2.2.2 -==> 4 installed packages -==> 0 concretized packages to be installed +-- root specs / stack ------------------------------------------- +[b] v7thz7n netlib-scalapack [b] 2zi5wtu netlib-scalapack [b] gouabck py-scipy +[b] x425zhl netlib-scalapack [b] b4nkwcf netlib-scalapack + +-- linux-ubuntu26.04-x86_64_v3 / %c,fortran=gcc@16.1.0 ---------- +[b] v7thz7n netlib-scalapack@2.2.3 [b] 2zi5wtu netlib-scalapack@2.2.3 +[b] x425zhl netlib-scalapack@2.2.3 [b] b4nkwcf netlib-scalapack@2.2.3 +==> 0 installed packages +==> 4 concretized packages to be installed diff --git a/outputs/stacks/examples/0.spack.stack.yaml b/outputs/stacks/examples/0.spack.stack.yaml index 679a1be1db..af58214cac 100644 --- a/outputs/stacks/examples/0.spack.stack.yaml +++ b/outputs/stacks/examples/0.spack.stack.yaml @@ -4,7 +4,29 @@ # configuration settings. spack: specs: - - gcc@12%gcc@11 + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - netlib-scalapack ^openblas ^openmpi + - netlib-scalapack ^openblas ^mpich + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] view: false - concretizer: - unify: true diff --git a/outputs/stacks/examples/1.spack.stack.yaml b/outputs/stacks/examples/1.spack.stack.yaml index 679a1be1db..bde89f3c2d 100644 --- a/outputs/stacks/examples/1.spack.stack.yaml +++ b/outputs/stacks/examples/1.spack.stack.yaml @@ -4,7 +4,31 @@ # configuration settings. spack: specs: - - gcc@12%gcc@11 + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - netlib-scalapack ^openblas ^openmpi + - netlib-scalapack ^openblas ^mpich + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: true diff --git a/outputs/stacks/examples/2.spack.stack.yaml b/outputs/stacks/examples/2.spack.stack.yaml index 46e08ec4b3..1798ba3a74 100644 --- a/outputs/stacks/examples/2.spack.stack.yaml +++ b/outputs/stacks/examples/2.spack.stack.yaml @@ -4,12 +4,33 @@ # configuration settings. spack: specs: - - gcc@12%gcc@11 - - matrix: - - [netlib-scalapack] - - [^openmpi, ^mpich] - - [^openblas, ^netlib-lapack] - - ["%gcc@12"] + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [netlib-scalapack] + - [^openmpi, ^mpich] + - [^openblas, ^netlib-lapack] + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false diff --git a/outputs/stacks/examples/3.spack.stack.yaml b/outputs/stacks/examples/3.spack.stack.yaml index b28c614b49..8e6a2274c2 100644 --- a/outputs/stacks/examples/3.spack.stack.yaml +++ b/outputs/stacks/examples/3.spack.stack.yaml @@ -4,19 +4,38 @@ # configuration settings. spack: definitions: - - mpis: [ openmpi, mpich ] - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] + - mpis: [openmpi, mpich] + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false diff --git a/outputs/stacks/examples/4bis.spack.stack.yaml b/outputs/stacks/examples/4bis.spack.stack.yaml index e962387b58..1cedc9ab1c 100644 --- a/outputs/stacks/examples/4bis.spack.stack.yaml +++ b/outputs/stacks/examples/4bis.spack.stack.yaml @@ -4,25 +4,44 @@ # configuration settings. spack: definitions: - - mpis: [ openmpi, mpich ] - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [openmpi, mpich] + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false diff --git a/outputs/stacks/examples/5.spack.stack.yaml b/outputs/stacks/examples/5.spack.stack.yaml index 2f22aac40d..2b46267054 100644 --- a/outputs/stacks/examples/5.spack.stack.yaml +++ b/outputs/stacks/examples/5.spack.stack.yaml @@ -4,27 +4,46 @@ # configuration settings. spack: definitions: - - mpis: [mpich] - - mpis: [openmpi] - when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [mpich] + - mpis: [openmpi] + when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: - - "py-scipy ^netlib-lapack" + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: + - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false diff --git a/outputs/stacks/examples/6.spack.stack.yaml b/outputs/stacks/examples/6.spack.stack.yaml index 7260eb8d0e..dadf00d46d 100644 --- a/outputs/stacks/examples/6.spack.stack.yaml +++ b/outputs/stacks/examples/6.spack.stack.yaml @@ -4,33 +4,52 @@ # configuration settings. spack: definitions: - - mpis: [mpich] - - mpis: [openmpi] - when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [mpich] + - mpis: [openmpi] + when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: - - "py-scipy ^netlib-lapack" - concretizer: - unify: false + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: + - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: default: root: views/default - select: ['%gcc@12'] + select: ['%gcc@16'] exclude: [^mpich, ^netlib-lapack] full: root: views/full diff --git a/outputs/stacks/examples/7.spack.stack.yaml b/outputs/stacks/examples/7.spack.stack.yaml index ea8763bbb0..db3a5886e1 100644 --- a/outputs/stacks/examples/7.spack.stack.yaml +++ b/outputs/stacks/examples/7.spack.stack.yaml @@ -4,33 +4,52 @@ # configuration settings. spack: definitions: - - mpis: [mpich] - - mpis: [openmpi] - when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [mpich] + - mpis: [openmpi] + when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: - - "py-scipy ^netlib-lapack" - concretizer: - unify: false + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: + - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: default: root: views/default - select: ['%gcc@12'] + select: ['%gcc@16'] exclude: [^mpich, ^netlib-lapack] link: roots full: diff --git a/outputs/stacks/examples/8.spack.stack.yaml b/outputs/stacks/examples/8.spack.stack.yaml index ccfa149313..058b08d909 100644 --- a/outputs/stacks/examples/8.spack.stack.yaml +++ b/outputs/stacks/examples/8.spack.stack.yaml @@ -4,30 +4,49 @@ # configuration settings. spack: definitions: - - mpis: [mpich] - - mpis: [openmpi] - when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [mpich] + - mpis: [openmpi] + when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: - - "py-scipy ^netlib-lapack" + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: + - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false modules: default: enable: @@ -39,4 +58,4 @@ spack: - mpi - lapack core_specs: - - '%gcc@11' + - '%gcc@15' diff --git a/outputs/stacks/examples/9.spack.stack.yaml b/outputs/stacks/examples/9.spack.stack.yaml index 2627beb780..70e6c20139 100644 --- a/outputs/stacks/examples/9.spack.stack.yaml +++ b/outputs/stacks/examples/9.spack.stack.yaml @@ -4,30 +4,49 @@ # configuration settings. spack: definitions: - - mpis: [mpich] - - mpis: [openmpi] - when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' - - lapacks: [ openblas, netlib-lapack ] - - compilers: [ "gcc@12" ] - - mpi_packages: [ netlib-scalapack ] - - serial_packages: [py-scipy] + - mpis: [mpich] + - mpis: [openmpi] + when: 'env.get("SPACK_STACK_USE_OPENMPI", "") == "1"' + - lapacks: [openblas, netlib-lapack] + - mpi_packages: [netlib-scalapack] + - serial_packages: [py-scipy] specs: - - gcc@12%gcc@11 - - matrix: - - [$mpi_packages] - - [$^mpis] - - [$^lapacks] - - [$%compilers] - - matrix: - - [$serial_packages] - - [$^lapacks] - - [$%compilers] - exclude: - - "py-scipy ^netlib-lapack" + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - matrix: + - [$mpi_packages] + - [$^mpis] + - [$^lapacks] + - matrix: + - [$serial_packages] + - [$^lapacks] + exclude: + - "py-scipy ^netlib-lapack" + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + concretizer: + unify: false view: false - concretizer: - unify: false modules: default: enable: @@ -39,13 +58,13 @@ spack: - mpi - lapack core_specs: - - '%gcc@11' + - '%gcc@15' hash_length: 0 include: - gcc exclude: - - '%gcc@11.4.0' - - 'autoconf' + - '%gcc@15' + - autoconf all: environment: set: diff --git a/outputs/stacks/examples/compiler.spack.stack.yaml b/outputs/stacks/examples/compiler.spack.stack.yaml new file mode 100644 index 0000000000..03f955ca5a --- /dev/null +++ b/outputs/stacks/examples/compiler.spack.stack.yaml @@ -0,0 +1,9 @@ +# This is a Spack Environment file. +# +# It describes a set of packages to be installed, along with +# configuration settings. +spack: + specs: + - gcc@16 %gcc@15 + - lmod@8.7.67 %gcc@15 + view: false diff --git a/outputs/stacks/examples/groups-0.spack.stack.yaml b/outputs/stacks/examples/groups-0.spack.stack.yaml new file mode 100644 index 0000000000..4907cf36f9 --- /dev/null +++ b/outputs/stacks/examples/groups-0.spack.stack.yaml @@ -0,0 +1,15 @@ +# This is a Spack Environment file. +# +# It describes a set of packages to be installed, along with +# configuration settings. +spack: + specs: + - group: compiler + specs: + - gcc@16 %gcc@15 + - lmod@8.7.67 %gcc@15 + - group: stack + needs: [compiler] + specs: + - netlib-scalapack %gcc@16 ^openblas ^openmpi + view: false diff --git a/outputs/stacks/examples/groups-1.spack.stack.yaml b/outputs/stacks/examples/groups-1.spack.stack.yaml new file mode 100644 index 0000000000..797bde2d26 --- /dev/null +++ b/outputs/stacks/examples/groups-1.spack.stack.yaml @@ -0,0 +1,31 @@ +# This is a Spack Environment file. +# +# It describes a set of packages to be installed, along with +# configuration settings. +spack: + specs: + - group: compiler + specs: + - gcc@16 + - lmod@8.7.67 + override: + packages: + c: + prefer: [gcc@15] + cxx: + prefer: [gcc@15] + fortran: + prefer: [gcc@15] + - group: stack + needs: [compiler] + specs: + - netlib-scalapack ^openblas ^openmpi + override: + packages: + c: + prefer: [gcc@16] + cxx: + prefer: [gcc@16] + fortran: + prefer: [gcc@16] + view: false diff --git a/outputs/stacks/groups-0.out b/outputs/stacks/groups-0.out new file mode 100644 index 0000000000..91fc91fa04 --- /dev/null +++ b/outputs/stacks/groups-0.out @@ -0,0 +1,103 @@ +$ spack concretize +==> Concretizing the 'compiler' group of specs +==> Concretizing the 'stack' group of specs +==> Concretized 3 specs: +[+] vlwdxlj gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cuzgmus ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ao2onuz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] vbwvgwx ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] z7wqeps ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] k25xiih ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] xpmsy5x ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] jo3eg4r ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yhkgfai ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] y6uqrto ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] phcmfqk ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 3gdq456 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] mguwetc ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] hhjyyqy ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] punbqrx ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] gxmoxea ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] melg7ga ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] sf5iutv ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] bvphs3b ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 27d4iyp ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cbtgjrh ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] cq4dkuc ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ohmdb2l ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] jvlaabk ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] sle3ix4 ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ujlg2ua ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] f5xe4px ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] afklka7 ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ekvivpv ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] g72d7i3 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 63aruxk ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] wf22jsg lmod@8.7.67+auto_swap~redirect build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ywyq4f5 ^bc@1.08.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] litd2mh ^ed@1.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] q66mudl ^lua@5.4.8+shared build_system=makefile fetcher=curl platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] j2fa7xl ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 4lyasaz ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 33yozp5 ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] axeuqg3 ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] 4qgksuy ^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=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] su5b2hs ^lua-luafilesystem@1.9.0 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] egzwtik ^lua-luaposix@36.3 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] bkzcu2s ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] yvl6jpi ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ci53fkm ^procps@4.0.6+nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] a27iqiv ^sed@4.9 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] d4ibosb ^tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] b4nkwcf netlib-scalapack@2.2.3~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] yonurps ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 6b5h3dv ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iiwpnp7 ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] djpmji7 ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] yoq4amm ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iehcspo ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yd7lgm7 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ghfita3 ^gcc-runtime@16.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 6hzfsbp ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] kdylbqh ^openblas@0.3.33~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared~static build_system=makefile patches:=723ddc1 symbol_suffix=none threads=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] nzr6pd7 ^openmpi@5.0.10+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 patches:=646eb1a romio-filesystem:=none schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] yg7nv7p ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 47vgtt5 ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] r6vd65h ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] pdslnit ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] nn3ymay ^hwloc@2.13.0~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static patches:=b4db98b platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] cmgnxt6 ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cy6lybd ^util-macros@1.20.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] cxesrxa ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qs6av53 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bf6e7x2 ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] m5ts755 ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] raf5qk6 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] fc5ezqn ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] lq6tsmz ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] l3if3dy ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] g3gt6ze ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] tw6253j ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4diropt ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] swhw6f5 ^numactl@2.0.19 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] kjx2nfr ^openssh@10.3p1+gssapi build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] awic2yh ^krb5@1.22.2+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yws52fh ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 4c4uuub ^libedit@3.1-20251016 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 44jhzjg ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xxg272q ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] aev2xm7 ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ofahxlj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 2af63my ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cbnh7bw ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 3w5zzn3 ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xp6fyih ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qcxnkrd ^pmix@6.1.0~munge~python build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cj2ohvh ^prrte@4.1.0 build_system=autotools patches:=64faa1a,91b28f5 schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4p7olya ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 + diff --git a/outputs/stacks/install-0.out b/outputs/stacks/install-0.out new file mode 100644 index 0000000000..021731ead7 --- /dev/null +++ b/outputs/stacks/install-0.out @@ -0,0 +1,133 @@ +$ spack install +[ ] ghfita3 gcc-runtime@16.1.0 fetching from build cache (0s) +[ ] ghfita3 gcc-runtime@16.1.0 relocating (0s) +[+] ghfita3 gcc-runtime@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-16.1.0-ghfita36diqcbps7me6eh5im5crijl3g (0s) +[ ] ofahxlj bzip2@1.0.8 fetching from build cache (0s) +[ ] ofahxlj bzip2@1.0.8 relocating (0s) +[ ] kdylbqh openblas@0.3.33 fetching from build cache (0s) +[ ] kdylbqh openblas@0.3.33 relocating (0s) +[ ] 44jhzjg libxcrypt@4.5.2 fetching from build cache (0s) +[ ] 44jhzjg libxcrypt@4.5.2 relocating (0s) +[ ] qs6av53 libiconv@1.18 fetching from build cache (0s) +[ ] qs6av53 libiconv@1.18 relocating (0s) +[ ] cmgnxt6 libpciaccess@0.17 fetching from build cache (0s) +[ ] cmgnxt6 libpciaccess@0.17 relocating (0s) +[ ] zknpbz3 netlib-lapack@3.12.1 fetching from build cache (0s) +[ ] zknpbz3 netlib-lapack@3.12.1 relocating (0s) +[ ] swhw6f5 numactl@2.0.19 fetching from build cache (0s) +[ ] swhw6f5 numactl@2.0.19 relocating (0s) +[ ] jgqwv65 libffi@3.5.2 fetching from build cache (0s) +[ ] jgqwv65 libffi@3.5.2 relocating (0s) +[ ] yd7lgm7 zlib-ng@2.3.3 fetching from build cache (0s) +[ ] yd7lgm7 zlib-ng@2.3.3 relocating (0s) +[ ] bf6e7x2 xz@5.8.3 fetching from build cache (0s) +[ ] bf6e7x2 xz@5.8.3 relocating (0s) +[ ] w3w22wx libmd@1.1.0 fetching from build cache (0s) +[ ] w3w22wx libmd@1.1.0 relocating (0s) +[ ] v3sdaph util-linux-uuid@2.41 fetching from build cache (0s) +[+] ofahxlj bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-ofahxljg6r4dtlyfgtolxexpmnw4cnkz (0s) +[+] 44jhzjg libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-44jhzjg42xausczvpn26wr6gyzsh2wnu (0s) +[ ] iehcspo ncurses@6.6 fetching from build cache (0s) +[+] cmgnxt6 libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-cmgnxt6kpobrrgj7k5a4iweh6p2qemnw (0s) +[ ] lq6tsmz zstd@1.5.7 fetching from build cache (0s) +[ ] v3sdaph util-linux-uuid@2.41 relocating (0s) +[+] swhw6f5 numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-swhw6f5gno25h4ap4h6htedy5thh2k55 (0s) +[+] qs6av53 libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qs6av53jc6wvykpse3q7o7sm2dazibpv (0s) +[ ] s6cemsy libfabric@2.5.1 fetching from build cache (0s) +[ ] iehcspo ncurses@6.6 relocating (0s) +[+] jgqwv65 libffi@3.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-jgqwv653kext2ew4mzjg3cbmlflyhdbb (0s) +[ ] lq6tsmz zstd@1.5.7 relocating (0s) +[ ] s6cemsy libfabric@2.5.1 relocating (0s) +[+] yd7lgm7 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-yd7lgm73h2wqb74e6pz2sdszwkubvpzd (0s) +[+] w3w22wx libmd@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-w3w22wxnstajwmg2wmtfm6nayugxqbvo (0s) +[ ] yoq4amm openssl@3.6.1 fetching from build cache (0s) +[+] bf6e7x2 xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-bf6e7x2te7rdq6kt43maxjnnntvnkpza (0s) +[ ] 4diropt pigz@2.8 fetching from build cache (0s) +[+] lq6tsmz zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-lq6tsmzmnrljkb52otacw2o4iqmskxn5 (0s) +[ ] t623nqz libbsd@0.12.2 fetching from build cache (0s) +[+] v3sdaph util-linux-uuid@2.41 /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-v3sdaph4k3onzfo5nbhk6gt3typaycl7 (0s) +[ ] yoq4amm openssl@3.6.1 relocating (0s) +[ ] 4diropt pigz@2.8 relocating (0s) +[+] zknpbz3 netlib-lapack@3.12.1 /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-lapack-3.12.1-zknpbz3xor7rz2jo6ek5p4dba6ac4ujs (0s) +[ ] t623nqz libbsd@0.12.2 relocating (0s) +[ ] cxesrxa libxml2@2.15.3 fetching from build cache (0s) +[+] s6cemsy libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-s6cemsy3l7cfqnetr3sjcrtcsln4quey (0s) +[ ] cxesrxa libxml2@2.15.3 relocating (0s) +[+] 4diropt pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-4diroptd5kjfnmxyjlgutr4sh7m53ctf (0s) +[+] kdylbqh openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-kdylbqhaa64fb44w6hbaoj4eibakcc6u (0s) +[ ] tw6253j tar@1.35 fetching from build cache (0s) +[+] t623nqz libbsd@0.12.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-t623nqzi6s364pdvgvf7ooygtsagc7ue (0s) +[ ] tw6253j tar@1.35 relocating (0s) +[+] cxesrxa libxml2@2.15.3 /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.15.3-cxesrxalf2jcma3g5dew6ovwxyqqgdqn (0s) +[+] yoq4amm openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-yoq4ammrtbfxojt6fms67bekd7a5izst (0s) +[ ] xkvh6gd expat@2.8.1 fetching from build cache (0s) +[ ] xkvh6gd expat@2.8.1 relocating (0s) +[ ] m5ts755 libevent@2.1.12 fetching from build cache (0s) +[+] tw6253j tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-tw6253j6xqn7udhufev2afnhjepbunqh (0s) +[ ] m5ts755 libevent@2.1.12 relocating (0s) +[+] xkvh6gd expat@2.8.1 /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.8.1-xkvh6gdnqgwccukuhsyvfry63qseotlz (0s) +[+] iehcspo ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-iehcspoirzcldubv7budljlbeiooqvpa (0s) +[ ] 4c4uuub libedit@3.1-20251016 fetching from build cache (0s) +[+] m5ts755 libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-m5ts755lehs4a7r5psjeh5k6pjptap4v (0s) +[ ] g3gt6ze gettext@1.0 fetching from build cache (0s) +[ ] 4c4uuub libedit@3.1-20251016 relocating (0s) +[ ] cbnh7bw readline@8.3 fetching from build cache (0s) +[ ] nn3ymay hwloc@2.13.0 fetching from build cache (1s) +[ ] cbnh7bw readline@8.3 relocating (1s) +[ ] g3gt6ze gettext@1.0 relocating (1s) +[ ] nn3ymay hwloc@2.13.0 relocating (1s) +[+] 4c4uuub libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-4c4uuubtih3trasplcywhk2ena3knzjk (1s) +[+] cbnh7bw readline@8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-cbnh7bwdfvbzqpoww77ltp2s54nizaxx (1s) +[ ] uliuxbf sqlite@3.53.1 fetching from build cache (0s) +[ ] 2af63my gdbm@1.26 fetching from build cache (0s) +[ ] uliuxbf sqlite@3.53.1 relocating (0s) +[ ] 2af63my gdbm@1.26 relocating (0s) +[+] nn3ymay hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-nn3ymaytmizysjb5hfbyzn7migudvklf (1s) +[ ] bovk7dt mpich@5.0.1 fetching from build cache (0s) +[ ] qcxnkrd pmix@6.1.0 fetching from build cache (0s) +[+] 2af63my gdbm@1.26 /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.26-2af63myyx6xsgd5vuwqhj7ibwmnptibj (0s) +[ ] bovk7dt mpich@5.0.1 relocating (0s) +[ ] qcxnkrd pmix@6.1.0 relocating (0s) +[+] uliuxbf sqlite@3.53.1 /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.53.1-uliuxbfvj27y6podjxir7af7frdjuord (0s) +[+] qcxnkrd pmix@6.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.1.0-qcxnkrd6rle6hjxvjeevshakgvxxsi7g (0s) +[+] g3gt6ze gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-g3gt6ze7gojves2utbt43mddfmx3evv3 (1s) +[ ] cj2ohvh prrte@4.1.0 fetching from build cache (0s) +[ ] awic2yh krb5@1.22.2 fetching from build cache (0s) +[ ] cj2ohvh prrte@4.1.0 relocating (0s) +[ ] afnel7p python@3.14.5 fetching from build cache (0s) +[ ] awic2yh krb5@1.22.2 relocating (0s) +[ ] afnel7p python@3.14.5 relocating (0s) +[+] awic2yh krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-awic2yh3c7mlbqbamsoxcwrciv4h6utb (0s) +[+] cj2ohvh prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-cj2ohvhvhiawcijsrkgs5nldcxi42hfd (0s) +[ ] kjx2nfr openssh@10.3p1 fetching from build cache (0s) +[ ] kjx2nfr openssh@10.3p1 relocating (0s) +[+] kjx2nfr openssh@10.3p1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-10.3p1-kjx2nfrhrvxzutcvg3zyxjv7tvyqiat2 (0s) +[ ] nzr6pd7 openmpi@5.0.10 fetching from build cache (0s) +[+] bovk7dt mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-bovk7dtifzhj3qyej4pmqssvi4oda2k4 (0s) +[ ] nzr6pd7 openmpi@5.0.10 relocating (0s) +[ ] x425zhl netlib-scalapack@2.2.3 fetching from build cache (0s) +[ ] v7thz7n netlib-scalapack@2.2.3 fetching from build cache (0s) +[ ] x425zhl netlib-scalapack@2.2.3 relocating (0s) +[ ] v7thz7n netlib-scalapack@2.2.3 relocating (0s) +[+] x425zhl netlib-scalapack@2.2.3 /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.3-x425zhlxzxtbvtol4voqnfnwkwi7i7jm (1s) +[+] v7thz7n netlib-scalapack@2.2.3 /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.3-v7thz7nq3c2kfw4rbqhsulbd3yprhrap (1s) +[+] afnel7p python@3.14.5 /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.5-afnel7povb4oermf4jcb5pchgjqkmmux (1s) +[ ] bcclnnz python-venv@1.0 fetching from build cache (0s) +[+] nzr6pd7 openmpi@5.0.10 /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.10-nzr6pd7wjjwsa7eltwui6dzmv7klrucn (1s) +[ ] bcclnnz python-venv@1.0 relocating (0s) +[ ] b4nkwcf netlib-scalapack@2.2.3 fetching from build cache (0s) +[ ] 2zi5wtu netlib-scalapack@2.2.3 fetching from build cache (0s) +[ ] b4nkwcf netlib-scalapack@2.2.3 relocating (0s) +[ ] 2zi5wtu netlib-scalapack@2.2.3 relocating (0s) +[+] bcclnnz python-venv@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/python-venv-1.0-bcclnnzhc3vordjcpw474p7acng2prlx (0s) +[ ] 7g2cva3 py-numpy@2.4.6 fetching from build cache (0s) +[ ] 3iqsk4i py-pybind11@3.0.2 fetching from build cache (0s) +[ ] 7g2cva3 py-numpy@2.4.6 relocating (0s) +[ ] 3iqsk4i py-pybind11@3.0.2 relocating (0s) +[+] b4nkwcf netlib-scalapack@2.2.3 /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.3-b4nkwcfstoe3im2ia3x4sybstfpwfprz (0s) +[+] 2zi5wtu netlib-scalapack@2.2.3 /home/spack/spack/opt/spack/linux-x86_64_v3/netlib-scalapack-2.2.3-2zi5wtuh2jnzfsfjctcvwu7bxugildzo (0s) +[+] 3iqsk4i py-pybind11@3.0.2 /home/spack/spack/opt/spack/linux-x86_64_v3/py-pybind11-3.0.2-3iqsk4i75azrkcftvwmnyp6hezl35dl3 (0s) +[+] 7g2cva3 py-numpy@2.4.6 /home/spack/spack/opt/spack/linux-x86_64_v3/py-numpy-2.4.6-7g2cva3wwgq2nffqpvwujvc2rbbk57hp (0s) +[ ] gouabck py-scipy@1.17.1 fetching from build cache (0s) +[ ] gouabck py-scipy@1.17.1 relocating (0s) +[+] gouabck py-scipy@1.17.1 /home/spack/spack/opt/spack/linux-x86_64_v3/py-scipy-1.17.1-gouabckeot5bo6tkkjiz5o5grjhbhptd (1s) diff --git a/outputs/stacks/modules-1.out b/outputs/stacks/modules-1.out index 7756c43314..9121742a27 100644 --- a/outputs/stacks/modules-1.out +++ b/outputs/stacks/modules-1.out @@ -1,5 +1,5 @@ $ module --version -Modules based on Lua: Version 8.7.18 2023-01-14 07:33 -06:00 +Modules based on Lua: Version 8.7.67 2025-10-04 20:16 -05:00 by Robert McLay mclay@tacc.utexas.edu diff --git a/outputs/stacks/modules-2.out b/outputs/stacks/modules-2.out index 123dc10ffb..0c3385dedb 100644 --- a/outputs/stacks/modules-2.out +++ b/outputs/stacks/modules-2.out @@ -1,88 +1,22 @@ $ module av ----- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/Core ---- - autoconf-archive/2023.02.20-7p7gq7u - automake/1.16.5-pzmnwzm - bc/1.07.1-s3qhnq4 - berkeley-db/18.1.40-vdgigsw - bison/3.8.2-n7yzkyl - bzip2/1.0.8-x7t4naj - ca-certificates-mozilla/2025-08-12-etqlnw5 - compiler-wrapper/1.0-ntccuj2 - curl/8.15.0-isdtvvd - diffutils/3.12-cih4xrz - ed/1.4-4cbvnhd - expat/2.7.3-7yr5v6w - findutils/4.10.0-irvryts - flex/2.6.3-gmhq65u - gawk/5.3.1-irhvzch - gcc-runtime/11.4.0-nokfxva - gcc-runtime/12.3.0-pgwnyw7 (D) - gcc/11.4.0-ml7cem5 - gcc/12.3.0-fmnvqo4 (D) - gdbm/1.25-aq7qwy6 - gettext/0.23.1-cakgj4n - glibc/2.35-qg7qyaz - gmake/4.4.1-4obn7cg - gmp/6.3.0-mj4re3l - libbsd/0.12.2-ucrhsyw - libffi/3.5.2-zgro4tw - libiconv/1.18-qtepnkr - libmd/1.1.0-gth3ii5 - libsigsegv/2.14-bs5ujst - libssh2/1.11.1-txa2olx - libtool/2.4.7-yt7ajy4 - libxcrypt/4.4.38-yiij42p - libxml2/2.13.5-5trxrsw - lmod/8.7.18-gbpxgjw - lua-luafilesystem/1.8.0-nsymk62 - lua-luaposix/36.1-bubs6lu - lua/5.4.6-hdxlqej - m4/1.4.20-lxvpwti - mbedtls/2.28.9-bz3ghzh - mpc/1.3.1-sczvrku - mpfr/4.2.1-m3nwalt - ncurses/6.5-20250705-ncdxq3j - nghttp2/1.48.0-ft5kpbd - ninja/1.13.0-2stmhpc - openssl/3.6.0-gv7wpik - pcre2/10.44-z5vjj7q - perl/5.42.0-62kt5y4 - pigz/2.8-kaz756e - pkgconf/2.5.1-f4qiprw - python/3.11.14-rbf2x4i - re2c/3.1-axmwics - readline/8.3-c6d2zlj - sqlite/3.50.4-elvodyb - tar/1.35-lfgvgva - tcl/8.6.17-x74vmgr - texinfo/7.2-k6ygirs - unzip/6.0-5gxay2a - util-linux-uuid/2.41-n45otd3 - util-macros/1.20.1-hwxnwvm - xz/5.6.3-yzaocbs - zlib-ng/2.0.7-qlavhjb - zstd/1.5.7-foiizhd +----------------------------------------------------------------------- /home/spack/stacks/modules/linux-ubuntu26.04-x86_64/Core ----------------------------------------------------------------------- + binutils/2.46.0-cuzgmus gcc/15.2.0-yjlog5x libxcrypt/4.5.2-bkzcu2s mpc/1.4.1-gxmoxea pkgconf/2.5.1-yvl6jpi zlib-ng/2.3.3-g72d7i3 + bzip2/1.0.8-cbtgjrh gcc/16.1.0-vlwdxlj (D) libxml2/2.15.3-ujlg2ua mpfr/4.2.2-melg7ga readline/8.3-k25xiih zstd/1.5.7-63aruxk + compiler-wrapper/1.1.0-mmywg7x gettext/1.0-sle3ix4 lmod/8.7.67-wf22jsg ncurses/6.6-ekvivpv tar/1.35-f5xe4px + curl/8.20.0-j2fa7xl glibc/2.43-yc4n2pp lua-luafilesystem/1.9.0-su5b2hs nghttp2/1.67.1-4lyasaz tcl/8.6.17-d4ibosb + gcc-runtime/15.2.0-xm76mt3 gmp/6.3.0-xpmsy5x lua-luaposix/36.3-egzwtik openssl/3.6.1-33yozp5 unzip/6.0-4qgksuy + gcc-runtime/16.1.0-ghfita3 (D) libiconv/1.18-vbwvgwx lua/5.4.8-q66mudl pigz/2.8-afklka7 xz/5.8.3-hhjyyqy Where: D: Default Module -If the avail list is too long -consider trying: +If the avail list is too long consider trying: -"module --default avail" or -"ml -d av" to just list the -default modules. -"module overview" or "ml ov" -to display the number of -modules for each name. +"module --default avail" or "ml -d av" to just list the default modules. +"module overview" or "ml ov" to display the number of modules for each name. -Use "module spider" to find -all possible modules and -extensions. -Use "module keyword key1 key2 -..." to search for all -possible modules matching any -of the "keys". +Use "module spider" to find all possible modules and extensions. +Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys". diff --git a/outputs/stacks/modules-3.out b/outputs/stacks/modules-3.out index 41ed551250..ee673dd502 100644 --- a/outputs/stacks/modules-3.out +++ b/outputs/stacks/modules-3.out @@ -1,166 +1,42 @@ $ module load gcc $ which gcc -/home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc/bin/gcc +/home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn/bin/gcc $ gcc --version -gcc (Spack GCC) 12.3.0 -Copyright (C) 2022 Free Software Foundation, Inc. +gcc (Spack GCC) 16.1.0 +Copyright (C) 2026 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ module av ----- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/gcc/12.3.0 ---- - automake/1.16.5-zmzk4bb (D) - bzip2/1.0.8-zom5syd (D) - cmake/3.31.9-4a7thjg - curl/8.15.0-zianoaa (D) - diffutils/3.12-msusunh (D) - expat/2.7.3-ikeoatl - gdbm/1.25-y5bsvao (D) - gettext/0.23.1-3f5v73y (D) - git/2.48.1-aim3224 - hwloc/2.12.2-wkj6z6m - krb5/1.21.3-onmo4bv - libbsd/0.12.2-zb37a5t (D) - libedit/3.1-20240808-c5o6gvv - libevent/2.1.12-fn26hil - libfabric/2.3.1-7imejdf - libffi/3.5.2-s56v4gf - libiconv/1.18-g3zxoz6 - libidn2/2.3.7-gntupl3 - libmd/1.1.0-cq4lpjp - libpciaccess/0.17-p7g23cj - libunistring/1.2-x5b7oet - libxcrypt/4.4.38-drjmmlw - libxml2/2.13.5-idam6zh - mpich/4.3.2-uaioo2h - ncurses/6.5-20250705-ytk4y2k (D) - netlib-lapack/3.12.1-rhz3uek - numactl/2.0.18-t2nikrt - openblas/0.3.30-dwjd7g2 - openmpi/5.0.8-p2gmhau - openssh/9.9p1-lip7jtp - openssl/3.6.0-q4fenfo (D) - perl/5.42.0-jpuw66s - pigz/2.8-bs2taxm - pmix/6.0.0-76oyav4 - prrte/4.0.0-zalt7cs - py-beniget/0.4.2.post1-g6mqwbr - py-calver/2025.4.17-gnnyu6h - py-cython/3.1.3-apuchub - py-flit-core/3.12.0-55omqj2 - py-gast/0.6.0-xrd6sez - py-hatch-vcs/0.5.0-44uhp2g - py-hatchling/1.27.0-qb7x6jy - py-meson-python/0.18.0-o6u3um7 - py-packaging/25.0-j3t7cjg - py-pathspec/0.12.1-wvr3fhe - py-pip/25.1.1-qwew5rg - py-pluggy/1.6.0-2c2amjc - py-ply/3.11-xgx3hu4 - py-pybind11/3.0.1-b7sx7ll - py-pyproject-metadata/0.9.1-sypchiv - py-scikit-build-core/0.11.5-5r47zyp - py-setuptools-scm/8.2.1-xcq4max - py-setuptools/80.9.0-urwrpfo - py-trove-classifiers/2025.9.11.17-cwn5qw7 - py-wheel/0.45.1-vs4xbx3 - python-venv/1.0-nrdm37j - python/3.14.0-yvs3szq (D) - readline/8.3-eyfbskp (D) - sqlite/3.50.4-plzt2nd (D) - tar/1.35-wfarfth (D) - util-linux-uuid/2.41-b4npzn6 - xz/5.6.3-643vviq (D) - yaksa/0.4-7jn3viv - zlib-ng/2.2.4-4tglvhv (D) - zstd/1.5.7-fj5u5hm - ----- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/Core ---- - autoconf-archive/2023.02.20-7p7gq7u - automake/1.16.5-pzmnwzm - bc/1.07.1-s3qhnq4 - berkeley-db/18.1.40-vdgigsw - bison/3.8.2-n7yzkyl - bzip2/1.0.8-x7t4naj - ca-certificates-mozilla/2025-08-12-etqlnw5 - compiler-wrapper/1.0-ntccuj2 - curl/8.15.0-isdtvvd - diffutils/3.12-cih4xrz - ed/1.4-4cbvnhd - expat/2.7.3-7yr5v6w (D) - findutils/4.10.0-irvryts - flex/2.6.3-gmhq65u - gawk/5.3.1-irhvzch - gcc-runtime/11.4.0-nokfxva (L) - gcc-runtime/12.3.0-pgwnyw7 (D) - gcc/11.4.0-ml7cem5 - gcc/12.3.0-fmnvqo4 (L,D) - gdbm/1.25-aq7qwy6 - gettext/0.23.1-cakgj4n - glibc/2.35-qg7qyaz (L) - gmake/4.4.1-4obn7cg - gmp/6.3.0-mj4re3l (L) - libbsd/0.12.2-ucrhsyw - libffi/3.5.2-zgro4tw (D) - libiconv/1.18-qtepnkr (D) - libmd/1.1.0-gth3ii5 (D) - libsigsegv/2.14-bs5ujst - libssh2/1.11.1-txa2olx - libtool/2.4.7-yt7ajy4 - libxcrypt/4.4.38-yiij42p (D) - libxml2/2.13.5-5trxrsw (D) - lmod/8.7.18-gbpxgjw - lua-luafilesystem/1.8.0-nsymk62 - lua-luaposix/36.1-bubs6lu - lua/5.4.6-hdxlqej - m4/1.4.20-lxvpwti - mbedtls/2.28.9-bz3ghzh - mpc/1.3.1-sczvrku (L) - mpfr/4.2.1-m3nwalt (L) - ncurses/6.5-20250705-ncdxq3j - nghttp2/1.48.0-ft5kpbd - ninja/1.13.0-2stmhpc - openssl/3.6.0-gv7wpik - pcre2/10.44-z5vjj7q - perl/5.42.0-62kt5y4 (D) - pigz/2.8-kaz756e (D) - pkgconf/2.5.1-f4qiprw - python/3.11.14-rbf2x4i - re2c/3.1-axmwics - readline/8.3-c6d2zlj - sqlite/3.50.4-elvodyb - tar/1.35-lfgvgva - tcl/8.6.17-x74vmgr - texinfo/7.2-k6ygirs - unzip/6.0-5gxay2a - util-linux-uuid/2.41-n45otd3 (D) - util-macros/1.20.1-hwxnwvm - xz/5.6.3-yzaocbs - zlib-ng/2.0.7-qlavhjb (L) - zstd/1.5.7-foiizhd (L,D) +-------------------------------------------------------------------- /home/spack/stacks/modules/linux-ubuntu26.04-x86_64/gcc/16.1.0 -------------------------------------------------------------------- + bzip2/1.0.8-ofahxlj (D) libedit/3.1-20251016-4c4uuub libxcrypt/4.5.2-44jhzjg (D) openmpi/5.0.10-nzr6pd7 python-venv/1.0-bcclnnz zlib-ng/2.3.3-yd7lgm7 (D) + expat/2.8.1-xkvh6gd libevent/2.1.12-m5ts755 libxml2/2.15.3-cxesrxa openssh/10.3p1-kjx2nfr python/3.14.5-afnel7p zstd/1.5.7-lq6tsmz + gdbm/1.26-2af63my libfabric/2.5.1-s6cemsy mpich/5.0.1-bovk7dt openssl/3.6.1-yoq4amm readline/8.3-cbnh7bw + gettext/1.0-g3gt6ze libffi/3.5.2-jgqwv65 ncurses/6.6-iehcspo (D) pigz/2.8-4diropt (D) sqlite/3.53.1-uliuxbf + hwloc/2.13.0-nn3ymay libiconv/1.18-qs6av53 netlib-lapack/3.12.1-zknpbz3 pmix/6.1.0-qcxnkrd tar/1.35-tw6253j (D) + krb5/1.22.2-awic2yh libmd/1.1.0-w3w22wx numactl/2.0.19-swhw6f5 prrte/4.1.0-cj2ohvh util-linux-uuid/2.41-v3sdaph + libbsd/0.12.2-t623nqz libpciaccess/0.17-cmgnxt6 openblas/0.3.33-kdylbqh py-pybind11/3.0.2-3iqsk4i xz/5.8.3-bf6e7x2 + +----------------------------------------------------------------------- /home/spack/stacks/modules/linux-ubuntu26.04-x86_64/Core ----------------------------------------------------------------------- + binutils/2.46.0-cuzgmus (L) gcc/15.2.0-yjlog5x libxcrypt/4.5.2-bkzcu2s mpc/1.4.1-gxmoxea (L) pkgconf/2.5.1-yvl6jpi zlib-ng/2.3.3-g72d7i3 (L) + bzip2/1.0.8-cbtgjrh gcc/16.1.0-vlwdxlj (L,D) libxml2/2.15.3-ujlg2ua (D) mpfr/4.2.2-melg7ga (L) readline/8.3-k25xiih (D) zstd/1.5.7-63aruxk (L,D) + compiler-wrapper/1.1.0-mmywg7x gettext/1.0-sle3ix4 (D) lmod/8.7.67-wf22jsg ncurses/6.6-ekvivpv tar/1.35-f5xe4px + curl/8.20.0-j2fa7xl glibc/2.43-yc4n2pp (L) lua-luafilesystem/1.9.0-su5b2hs nghttp2/1.67.1-4lyasaz tcl/8.6.17-d4ibosb + gcc-runtime/15.2.0-xm76mt3 (L) gmp/6.3.0-xpmsy5x (L) lua-luaposix/36.3-egzwtik openssl/3.6.1-33yozp5 (D) unzip/6.0-4qgksuy + gcc-runtime/16.1.0-ghfita3 (D) libiconv/1.18-vbwvgwx (D) lua/5.4.8-q66mudl pigz/2.8-afklka7 xz/5.8.3-hhjyyqy (D) Where: D: Default Module L: Module is loaded -If the avail list is too long -consider trying: +If the avail list is too long consider trying: -"module --default avail" or -"ml -d av" to just list the -default modules. -"module overview" or "ml ov" -to display the number of -modules for each name. +"module --default avail" or "ml -d av" to just list the default modules. +"module overview" or "ml ov" to display the number of modules for each name. -Use "module spider" to find -all possible modules and -extensions. -Use "module keyword key1 key2 -..." to search for all -possible modules matching any -of the "keys". +Use "module spider" to find all possible modules and extensions. +Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys". $ module unload gcc diff --git a/outputs/stacks/modules-4.out b/outputs/stacks/modules-4.out index 22a63dae94..d086712bcf 100644 --- a/outputs/stacks/modules-4.out +++ b/outputs/stacks/modules-4.out @@ -1,13 +1,2 @@ $ 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 2b8d0f5fbb..a2ae996a1a 100644 --- a/outputs/stacks/modules-5.out +++ b/outputs/stacks/modules-5.out @@ -2,124 +2,42 @@ $ module load gcc $ module load openmpi openblas netlib-scalapack py-scipy $ module av ----- /home/spack/stacks/modules/linux-ubuntu22.04-x86_64/gcc/12.3.0 ---- - automake/1.16.5 - bzip2/1.0.8 - cmake/3.31.9 - curl/8.15.0 - diffutils/3.12 - expat/2.7.3 - gdbm/1.25 - gettext/0.23.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.3.1 - libffi/3.5.2 - libiconv/1.18 - libidn2/2.3.7 - libmd/1.1.0 - libpciaccess/0.17 - libunistring/1.2 - libxcrypt/4.4.38 - libxml2/2.13.5 - mpich/4.3.2 - ncurses/6.5-20250705 - netlib-lapack/3.12.1 - numactl/2.0.18 - openblas/0.3.30 - openmpi/5.0.8 - openssh/9.9p1 - openssl/3.6.0 - perl/5.42.0 - pigz/2.8 - 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.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/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.14.0 - readline/8.3 - sqlite/3.50.4 - tar/1.35 - util-linux-uuid/2.41 - xz/5.6.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-08-12 - compiler-wrapper/1.0 - gcc-runtime/12.3.0 - gcc/11.4.0 - gcc/12.3.0 (L,D) - glibc/2.35 (L) - util-macros/1.20.1 +-------------------------------------------------------------------- /home/spack/stacks/modules/linux-ubuntu26.04-x86_64/gcc/16.1.0 -------------------------------------------------------------------- + bzip2/1.0.8 hwloc/2.13.0 libevent/2.1.12 libmd/1.1.0 mpich/5.0.1 openblas/0.3.33 pigz/2.8 python-venv/1.0 tar/1.35 zstd/1.5.7 + expat/2.8.1 krb5/1.22.2 libfabric/2.5.1 libpciaccess/0.17 ncurses/6.6 openmpi/5.0.10 pmix/6.1.0 python/3.14.5 util-linux-uuid/2.41 + gdbm/1.26 libbsd/0.12.2 libffi/3.5.2 libxcrypt/4.5.2 netlib-lapack/3.12.1 openssh/10.3p1 prrte/4.1.0 readline/8.3 xz/5.8.3 + gettext/1.0 libedit/3.1-20251016 libiconv/1.18 libxml2/2.15.3 numactl/2.0.19 openssl/3.6.1 py-pybind11/3.0.2 sqlite/3.53.1 zlib-ng/2.3.3 + +----------------------------------------------------------------------- /home/spack/stacks/modules/linux-ubuntu26.04-x86_64/Core ----------------------------------------------------------------------- + compiler-wrapper/1.1.0 gcc-runtime/16.1.0 gcc/15.2.0 gcc/16.1.0 (L,D) glibc/2.43 (L) Where: D: Default Module L: Module is loaded -If the avail list is too long -consider trying: +If the avail list is too long consider trying: -"module --default avail" or -"ml -d av" to just list the -default modules. -"module overview" or "ml ov" -to display the number of -modules for each name. +"module --default avail" or "ml -d av" to just list the default modules. +"module overview" or "ml ov" to display the number of modules for each name. -Use "module spider" to find -all possible modules and -extensions. -Use "module keyword key1 key2 -..." to search for all -possible modules matching any -of the "keys". +Use "module spider" to find all possible modules and extensions. +Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys". $ module load mpich -Lmod is automatically -replacing "openmpi/5.0.8" -with "mpich/4.3.2". +Lmod is automatically replacing "openmpi/5.0.10" with "mpich/5.0.1". Due to MODULEPATH changes, the following have been reloaded: - 1) netlib-scalapack/2.2.2 + 1) netlib-scalapack/2.2.3 $ module load netlib-lapack -Lmod is automatically -replacing "openblas/0.3.30" -with "netlib-lapack/3.12.1". +Lmod is automatically replacing "openblas/0.3.33" with "netlib-lapack/3.12.1". Due to MODULEPATH changes, the following have been reloaded: - 1) netlib-scalapack/2.2.2 + 1) netlib-scalapack/2.2.3 $ module purge diff --git a/outputs/stacks/setup-1.out b/outputs/stacks/setup-1.out deleted file mode 100644 index 14d1376edd..0000000000 --- a/outputs/stacks/setup-1.out +++ /dev/null @@ -1,4 +0,0 @@ -$ spack add gcc@12 %gcc@11 -==> Adding gcc@12 %gcc@11 to environment /home/spack/stacks -$ spack env view disable -$ spack config edit diff --git a/outputs/stacks/unify-0.out b/outputs/stacks/unify-0.out deleted file mode 100644 index dc85370248..0000000000 --- a/outputs/stacks/unify-0.out +++ /dev/null @@ -1,4 +0,0 @@ -$ spack add netlib-scalapack %gcc@12 ^openblas ^openmpi -==> Adding netlib-scalapack %gcc@12 ^openblas ^openmpi to environment /home/spack/stacks -$ spack add netlib-scalapack %gcc@12 ^openblas ^mpich -==> Adding netlib-scalapack %gcc@12 ^mpich ^openblas to environment /home/spack/stacks diff --git a/outputs/stacks/unify-1.out b/outputs/stacks/unify-1.out deleted file mode 100644 index 5e86b35aa9..0000000000 --- a/outputs/stacks/unify-1.out +++ /dev/null @@ -1,5 +0,0 @@ -$ spack concretize -==> Error: Spack concretizer internal error. Please submit a bug report and include the command, environment if applicable and the following error message. - [netlib-scalapack %gcc@12 ^openblas ^openmpi, netlib-scalapack %gcc@12 ^mpich ^openblas, gcc@12.3.0/fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc] is unsatisfiable, errors are: - internal_error("Imposing constraint outside of imposed_nodes") - internal_error("nodes in root condition set must be associated with root"). Couldn't concretize without changing the existing environment. If you are ok with changing it, try `spack concretize --force`. You could consider setting `concretizer:unify` to `when_possible` or `false` to allow multiple versions of some packages. diff --git a/outputs/stacks/unify-3.out b/outputs/stacks/unify-3.out index 18d4eec43b..bd9dea0ad5 100644 --- a/outputs/stacks/unify-3.out +++ b/outputs/stacks/unify-3.out @@ -1,88 +1,114 @@ -$ spack config add concretizer:unify:false $ spack concretize +==> Concretizing the 'compiler' group of specs +==> Concretizing the 'stack' group of specs ==> Starting concretization pool with 2 processes -==> Concretized 2 specs: - - 3t7cajd netlib-scalapack@2.2.2~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@12.3.0 - - 4a7thjg ^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 - - zianoaa ^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 -[+] ft5kpbd ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - q4fenfo ^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 -[+] etqlnw5 ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ytk4y2k ^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 - - 4tglvhv ^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 -[+] ntccuj2 ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] fmnvqo4 ^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 -[+] 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 -[+] irhvzch ^gawk@5.3.1~nls build_system=autotools 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 -[+] c6d2zlj ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[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 -[+] 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 -[+] 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 -[+] lxvpwti ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] sczvrku ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=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 -[+] 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 -[+] k6ygirs ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 -[+] 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 - - pgwnyw7 ^gcc-runtime@12.3.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 - - uaioo2h ^mpich@4.3.2~argobots~cuda+fortran+hwloc+hydra~level_zero+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.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 - - wkj6z6m ^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@12.3.0 - - 7imejdf ^libfabric@2.3.1~cuda~debug~kdreg~level_zero~rocm~uring build_system=autotools fabrics:=sockets,tcp,udp platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - p7g23cj ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] hwxnwvm ^util-macros@1.20.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - idam6zh ^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 - - g3zxoz6 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 643vviq ^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 -[+] f4qiprw ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - 7jn3viv ^yaksa@0.4~cuda~level_zero~rocm build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - yvs3szq ^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 - - ikeoatl ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - zb37a5t ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - cq4lpjp ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 3f5v73y ^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 - - wfarfth ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - bs2taxm ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - s56v4gf ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - eyfbskp ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - plzt2nd ^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 - - b4npzn6 ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - fj5u5hm ^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 - - dwjd7g2 ^openblas@0.3.30~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared build_system=makefile symbol_suffix=none threads=openmp platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@12.3.0 - - yxweja4 netlib-scalapack@2.2.2~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c,fortran=gcc@12.3.0 - - p2gmhau ^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@12.3.0 - - nzbffup ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - zmzk4bb ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - fn26hil ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - t2nikrt ^numactl@2.0.18 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - lip7jtp ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - onmo4bv ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.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 - - msusunh ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - c5o6gvv ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - drjmmlw ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - jpuw66s ^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 - - zom5syd ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - y5bsvao ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - 76oyav4 ^pmix@6.0.0~munge~python build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - zalt7cs ^prrte@4.0.0 build_system=autotools schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.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 +==> Concretized 4 specs: +[+] vlwdxlj gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cuzgmus ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ao2onuz ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] vbwvgwx ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] z7wqeps ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] k25xiih ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] xpmsy5x ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] jo3eg4r ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] yhkgfai ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] y6uqrto ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] phcmfqk ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 3gdq456 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] mguwetc ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] hhjyyqy ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] punbqrx ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] gxmoxea ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] melg7ga ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] sf5iutv ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] bvphs3b ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] 27d4iyp ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] cbtgjrh ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] cq4dkuc ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ohmdb2l ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] jvlaabk ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] sle3ix4 ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ujlg2ua ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] f5xe4px ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] afklka7 ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ekvivpv ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] g72d7i3 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 63aruxk ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] wf22jsg lmod@8.7.67+auto_swap~redirect build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ywyq4f5 ^bc@1.08.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] litd2mh ^ed@1.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] q66mudl ^lua@5.4.8+shared build_system=makefile fetcher=curl platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] j2fa7xl ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 4lyasaz ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] 33yozp5 ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] axeuqg3 ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] 4qgksuy ^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=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] su5b2hs ^lua-luafilesystem@1.9.0 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] egzwtik ^lua-luaposix@36.3 build_system=lua platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] bkzcu2s ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] yvl6jpi ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ci53fkm ^procps@4.0.6+nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] a27iqiv ^sed@4.9 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] d4ibosb ^tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] x425zhl netlib-scalapack@2.2.3~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] yonurps ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 6b5h3dv ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iiwpnp7 ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] djpmji7 ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] yoq4amm ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] iehcspo ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yd7lgm7 ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ghfita3 ^gcc-runtime@16.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 6hzfsbp ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bovk7dt ^mpich@5.0.1~argobots~cuda+fortran+hwloc+hydra~level_zero+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] l3if3dy ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] g3gt6ze ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] tw6253j ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4diropt ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] nn3ymay ^hwloc@2.13.0~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static patches:=b4db98b platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] s6cemsy ^libfabric@2.5.1~asan~cuda~debug~kdreg~level_zero~lsan~rocm~tsan~ubsan~uring build_system=autotools fabrics:=sockets,tcp,udp platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cmgnxt6 ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cy6lybd ^util-macros@1.20.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] cxesrxa ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qs6av53 ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] bf6e7x2 ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xp6fyih ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] afnel7p ^python@3.14.5+bz2+ctypes+dbm~debug~freethreading+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~static~tests~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ofahxlj ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xkvh6gd ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] t623nqz ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] w3w22wx ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 2af63my ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] jgqwv65 ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] cbnh7bw ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] uliuxbf ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] v3sdaph ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] lq6tsmz ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] kdylbqh ^openblas@0.3.33~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+pic+shared~static build_system=makefile patches:=723ddc1 symbol_suffix=none threads=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] b4nkwcf netlib-scalapack@2.2.3~ipo~pic+shared build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c,fortran=gcc@16.1.0 +[b] nzr6pd7 ^openmpi@5.0.10+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 patches:=646eb1a romio-filesystem:=none schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@16.1.0 +[b] yg7nv7p ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] 47vgtt5 ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] r6vd65h ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] pdslnit ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] m5ts755 ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] raf5qk6 ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] fc5ezqn ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] swhw6f5 ^numactl@2.0.19 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] kjx2nfr ^openssh@10.3p1+gssapi build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] awic2yh ^krb5@1.22.2+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] yws52fh ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 4c4uuub ^libedit@3.1-20251016 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 44jhzjg ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] xxg272q ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] aev2xm7 ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] 3w5zzn3 ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] qcxnkrd ^pmix@6.1.0~munge~python build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] cj2ohvh ^prrte@4.1.0 build_system=autotools patches:=64faa1a,91b28f5 schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] 4p7olya ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 diff --git a/outputs/stacks/unify-4.out b/outputs/stacks/unify-4.out deleted file mode 100644 index 3ab842f4cd..0000000000 --- a/outputs/stacks/unify-4.out +++ /dev/null @@ -1,4 +0,0 @@ -$ spack add netlib-scalapack %gcc@12 ^netlib-lapack ^openmpi -==> Adding netlib-scalapack %gcc@12 ^netlib-lapack ^openmpi to environment /home/spack/stacks -$ spack add netlib-scalapack %gcc@12 ^netlib-lapack ^mpich -==> Adding netlib-scalapack %gcc@12 ^mpich ^netlib-lapack to environment /home/spack/stacks diff --git a/outputs/stacks/view-0.out b/outputs/stacks/view-0.out index d94811ebcf..8e92a115d0 100644 --- a/outputs/stacks/view-0.out +++ b/outputs/stacks/view-0.out @@ -5,178 +5,57 @@ $ spack concretize $ ls ~/stacks/views/default bin etc include lib lib64 libexec man pyvenv.cfg sbin share var $ ls ~/stacks/views/default/lib -cmake libmenu.so -gettext libmenu.so.6 -krb5 libmenu.so.6.5 -libasan.so.8 libmenu_g.a -libasprintf.a libmenuw.a -libasprintf.so libmenuw.so -libasprintf.so.0 libmenuw.so.6 -libasprintf.so.0.0.0 libmenuw.so.6.5 -libatomic.so.1 libmenuw_g.a -libblas.so libmpi.a -libblas.so.3 libmpi.so -libblas.so.3.12.0 libmpi.so.12 -libbsd-ctor.a libmpi.so.12.5.2 -libbsd.a libmpi.so.40 -libbsd.so libmpi.so.40.40.7 -libbsd.so.0 libmpi_mpifh.so -libbsd.so.0.12.2 libmpi_mpifh.so.40 -libbz2.a libmpi_mpifh.so.40.40.1 -libbz2.so libmpi_usempi_ignore_tkr.so -libbz2.so.1 libmpi_usempi_ignore_tkr.so.40 -libbz2.so.1.0 libmpi_usempi_ignore_tkr.so.40.40.1 -libbz2.so.1.0.8 libmpi_usempif08.so -libcblas.so libmpi_usempif08.so.40 -libcblas.so.3 libmpi_usempif08.so.40.40.3 -libcblas.so.3.12.0 libmpich.so -libcharset.a libmpichcxx.so -libcharset.so libmpichf90.so -libcharset.so.1 libmpicxx.a -libcharset.so.1.0.0 libmpicxx.so -libcom_err.so libmpicxx.so.12 -libcom_err.so.3 libmpicxx.so.12.5.2 -libcom_err.so.3.0 libmpifort.a -libcrypt.a libmpifort.so -libcrypt.so libmpifort.so.12 -libcrypt.so.2 libmpifort.so.12.5.2 -libcrypt.so.2.0.0 libmpl.so -libcurses.so libncurses++.a -libedit.a libncurses++.so -libedit.so libncurses++.so.6 -libedit.so.0 libncurses++.so.6.5 -libedit.so.0.0.74 libncurses++_g.a -libevent-2.1.so.7 libncurses++w.a -libevent-2.1.so.7.0.1 libncurses++w.so -libevent.a libncurses++w.so.6 -libevent.so libncurses++w.so.6.5 -libevent_core-2.1.so.7 libncurses++w_g.a -libevent_core-2.1.so.7.0.1 libncurses.a -libevent_core.a libncurses.so -libevent_core.so libncurses.so.6 -libevent_extra-2.1.so.7 libncurses.so.6.5 -libevent_extra-2.1.so.7.0.1 libncurses_g.a -libevent_extra.a libncursesw.a -libevent_extra.so libncursesw.so -libevent_openssl-2.1.so.7 libncursesw.so.6 -libevent_openssl-2.1.so.7.0.1 libncursesw.so.6.5 -libevent_openssl.a libncursesw_g.a -libevent_openssl.so libnuma.a -libevent_pthreads-2.1.so.7 libnuma.so -libevent_pthreads-2.1.so.7.0.1 libnuma.so.1 -libevent_pthreads.a libnuma.so.1.0.0 -libevent_pthreads.so libopa.so -libexpat.a libopen-pal.so -libexpat.so libopen-pal.so.80 -libexpat.so.1 libopen-pal.so.80.0.5 -libexpat.so.1.11.1 libopenblas.a -libfabric.a libopenblas.so -libfabric.so libopenblas.so.0 -libfabric.so.1 libopenblasp-r0.3.30.a -libfabric.so.1.29.1 libopenblasp-r0.3.30.so -libfmpich.so libpanel.a -libform.a libpanel.so -libform.so libpanel.so.6 -libform.so.6 libpanel.so.6.5 -libform.so.6.5 libpanel_g.a -libform_g.a libpanelw.a -libformw.a libpanelw.so -libformw.so libpanelw.so.6 -libformw.so.6 libpanelw.so.6.5 -libformw.so.6.5 libpanelw_g.a -libformw_g.a libpciaccess.a -libgcc_s.so.1 libpciaccess.so -libgdbm.a libpciaccess.so.0 -libgdbm.so libpciaccess.so.0.11.1 -libgdbm.so.6 libpmix.a -libgdbm.so.6.0.0 libpmix.so -libgdbm_compat.a libpmix.so.2 -libgdbm_compat.so libpmix.so.2.18.0 -libgdbm_compat.so.4 libprrte.a -libgdbm_compat.so.4.0.0 libprrte.so -libgettextlib-0.23.1.so libprrte.so.4 -libgettextlib.a libprrte.so.4.0.0 -libgettextlib.so libpython3.14.so -libgettextpo.a libpython3.14.so.1.0 -libgettextpo.so libpython3.so -libgettextpo.so.0 libquadmath.so.0 -libgettextpo.so.0.5.12 libreadline.a -libgettextsrc-0.23.1.so libreadline.so -libgettextsrc.a libreadline.so.8 -libgettextsrc.so libreadline.so.8.3 -libgfortran.so.5 libscalapack.so -libgomp.so.1 libscalapack.so.2.2 -libgssapi_krb5.so libscalapack.so.2.2.1 -libgssapi_krb5.so.2 libsqlite3.a -libgssapi_krb5.so.2.2 libsqlite3.so -libgssrpc.so libsqlite3.so.0 -libgssrpc.so.4 libsqlite3.so.3.50.4 -libgssrpc.so.4.2 libssp.so.0 -libhistory.a libstdc++.so.6 -libhistory.so libtextstyle.a -libhistory.so.8 libtextstyle.so -libhistory.so.8.3 libtextstyle.so.0 -libhwloc.a libtextstyle.so.0.2.3 -libhwloc.so libtinfo.a -libhwloc.so.15 libtinfo.so -libhwloc.so.15.10.1 libtinfo.so.6 -libiconv.a libtinfo.so.6.5 -libiconv.so libtinfo_g.a -libiconv.so.2 libtinfow.a -libiconv.so.2.7.0 libtinfow.so -libintl.a libtinfow.so.6 -libintl.so libtinfow.so.6.5 -libintl.so.8 libtinfow_g.a -libintl.so.8.4.2 libtmglib.so -libitm.so.1 libtmglib.so.3 -libk5crypto.so libtmglib.so.3.12.0 -libk5crypto.so.3 libtsan.so.2 -libk5crypto.so.3.1 libubsan.so.1 -libkadm5clnt.so libuuid.a -libkadm5clnt_mit.so libuuid.so -libkadm5clnt_mit.so.12 libuuid.so.1 -libkadm5clnt_mit.so.12.0 libuuid.so.1.3.0 -libkadm5srv.so libverto.so -libkadm5srv_mit.so libverto.so.0 -libkadm5srv_mit.so.12 libverto.so.0.0 -libkadm5srv_mit.so.12.0 libxml2.so -libkdb5.so libxml2.so.2 -libkdb5.so.10 libxml2.so.2.13.5 -libkdb5.so.10.0 libyaksa.a -libkrad.so libyaksa.so -libkrad.so.0 libyaksa.so.0 -libkrad.so.0.0 libyaksa.so.0.0.0 -libkrb5.so libz.a -libkrb5.so.3 libz.so -libkrb5.so.3.3 libz.so.1 -libkrb5support.so libz.so.1.3.1.zlib-ng -libkrb5support.so.0 libzstd.a -libkrb5support.so.0.1 libzstd.so -liblapack.so libzstd.so.1 -liblapack.so.3 libzstd.so.1.5.7 -liblapack.so.3.12.0 mpi.mod -liblapacke.so mpi_ext.mod -liblapacke.so.3 mpi_f08.mod -liblapacke.so.3.12.0 mpi_f08_callbacks.mod -liblsan.so.0 mpi_f08_ext.mod -liblzma.a mpi_f08_interfaces.mod -liblzma.so mpi_f08_interfaces_callbacks.mod -liblzma.so.5 mpi_f08_types.mod -liblzma.so.5.6.3 mpi_types.mod -libmd.a openmpi -libmd.so pkgconfig -libmd.so.0 pmpi_f08_interfaces.mod -libmd.so.0.1.0 python3.14 -libmenu.a terminfo +cmake libevent_core-2.1.so.7.0.1 libgettextpo.a libkrb5.so libmpich.so libpanel.so libtinfo_g.a +gettext libevent_core.a libgettextpo.so libkrb5.so.3 libmpichcxx.so libpanel.so.6 libtinfow.a +krb5 libevent_core.so libgettextpo.so.0 libkrb5.so.3.3 libmpichf90.so libpanel.so.6.6 libtinfow.so +libasan.so.8 libevent_extra-2.1.so.7 libgettextpo.so.0.6.0 libkrb5support.so libmpicxx.a libpanel_g.a libtinfow.so.6 +libasprintf.a libevent_extra-2.1.so.7.0.1 libgettextsrc-1.0.so libkrb5support.so.0 libmpicxx.so libpanelw.a libtinfow.so.6.6 +libasprintf.so libevent_extra.a libgettextsrc.a libkrb5support.so.0.1 libmpicxx.so.12 libpanelw.so libtinfow_g.a +libasprintf.so.0 libevent_extra.so libgettextsrc.so liblapack.so libmpicxx.so.12.6.1 libpanelw.so.6 libtmglib.so +libasprintf.so.0.0.0 libevent_openssl-2.1.so.7 libgfortran.so.5 liblapack.so.3 libmpifort.a libpanelw.so.6.6 libtmglib.so.3 +libatomic.so.1 libevent_openssl-2.1.so.7.0.1 libgomp.so.1 liblapack.so.3.12.0 libmpifort.so libpanelw_g.a libtmglib.so.3.12.0 +libblas.so libevent_openssl.a libgssapi_krb5.so liblapacke.so libmpifort.so.12 libpciaccess.a libtsan.so.2 +libblas.so.3 libevent_openssl.so libgssapi_krb5.so.2 liblapacke.so.3 libmpifort.so.12.6.1 libpciaccess.so libubsan.so.1 +libblas.so.3.12.0 libevent_pthreads-2.1.so.7 libgssapi_krb5.so.2.2 liblapacke.so.3.12.0 libmpl.so libpciaccess.so.0 libuuid.a +libbsd-ctor.a libevent_pthreads-2.1.so.7.0.1 libgssrpc.so liblsan.so.0 libncurses++.a libpciaccess.so.0.11.1 libuuid.so +libbsd.a libevent_pthreads.a libgssrpc.so.4 liblzma.a libncurses++.so libpmix.a libuuid.so.1 +libbsd.so libevent_pthreads.so libgssrpc.so.4.2 liblzma.so libncurses++.so.6 libpmix.so libuuid.so.1.3.0 +libbsd.so.0 libexpat.a libhistory.a liblzma.so.5 libncurses++.so.6.6 libpmix.so.2 libverto.so +libbsd.so.0.12.2 libexpat.so libhistory.so liblzma.so.5.8.3 libncurses++_g.a libpmix.so.2.23.0 libverto.so.0 +libbz2.a libexpat.so.1 libhistory.so.8 libmd.a libncurses++w.a libprrte.a libverto.so.0.0 +libbz2.so libexpat.so.1.12.1 libhistory.so.8.3 libmd.so libncurses++w.so libprrte.so libxml2.so +libbz2.so.1 libfabric.a libhwasan.so.0 libmd.so.0 libncurses++w.so.6 libprrte.so.3 libxml2.so.16 +libbz2.so.1.0 libfabric.so libhwloc.a libmd.so.0.1.0 libncurses++w.so.6.6 libprrte.so.3.1.0 libxml2.so.16.1.3 +libbz2.so.1.0.8 libfabric.so.1 libhwloc.so libmenu.a libncurses++w_g.a libpython3.14.so libz.a +libcblas.so libfabric.so.1.31.1 libhwloc.so.15 libmenu.so libncurses.a libpython3.14.so.1.0 libz.so +libcblas.so.3 libfmpich.so libhwloc.so.15.10.2 libmenu.so.6 libncurses.so libpython3.so libz.so.1 +libcblas.so.3.12.0 libform.a libiconv.a libmenu.so.6.6 libncurses.so.6 libquadmath.so.0 libz.so.1.3.1.zlib-ng +libcharset.a libform.so libiconv.so libmenu_g.a libncurses.so.6.6 libreadline.a libzstd.a +libcharset.so libform.so.6 libiconv.so.2 libmenuw.a libncurses_g.a libreadline.so libzstd.so +libcharset.so.1 libform.so.6.6 libiconv.so.2.7.0 libmenuw.so libncursesw.a libreadline.so.8 libzstd.so.1 +libcharset.so.1.0.0 libform_g.a libitm.so.1 libmenuw.so.6 libncursesw.so libreadline.so.8.3 libzstd.so.1.5.7 +libcom_err.so libformw.a libk5crypto.so libmenuw.so.6.6 libncursesw.so.6 libscalapack.so mpi.mod +libcom_err.so.3 libformw.so libk5crypto.so.3 libmenuw_g.a libncursesw.so.6.6 libscalapack.so.2.2 mpi_ext.mod +libcom_err.so.3.0 libformw.so.6 libk5crypto.so.3.1 libmpi.a libncursesw_g.a libscalapack.so.2.2.3 mpi_f08.mod +libcrypt.a libformw.so.6.6 libkadm5clnt.so libmpi.so libnuma.a libsqlite3.a mpi_f08_callbacks.mod +libcrypt.so libformw_g.a libkadm5clnt_mit.so libmpi.so.12 libnuma.so libsqlite3.so mpi_f08_ext.mod +libcrypt.so.2 libgcc_s.so.1 libkadm5clnt_mit.so.12 libmpi.so.12.6.1 libnuma.so.1 libsqlite3.so.0 mpi_f08_interfaces.mod +libcrypt.so.2.0.0 libgdbm.a libkadm5clnt_mit.so.12.0 libmpi.so.40 libnuma.so.1.0.0 libsqlite3.so.3.53.1 mpi_f08_interfaces_callbacks.mod +libcurses.so libgdbm.so libkadm5srv.so libmpi.so.40.40.7 libopa.so libssp.so.0 mpi_f08_types.mod +libedit.a libgdbm.so.6 libkadm5srv_mit.so libmpi_mpifh.so libopen-pal.so libstdc++.so.6 mpi_types.mod +libedit.so libgdbm.so.6.0.0 libkadm5srv_mit.so.12 libmpi_mpifh.so.40 libopen-pal.so.80 libtextstyle.a openmpi +libedit.so.0 libgdbm_compat.a libkadm5srv_mit.so.12.0 libmpi_mpifh.so.40.40.1 libopen-pal.so.80.0.5 libtextstyle.so pkgconfig +libedit.so.0.0.76 libgdbm_compat.so libkdb5.so libmpi_usempi_ignore_tkr.so libopenblas-r0.3.33.a libtextstyle.so.0 pmpi_f08_interfaces.mod +libevent-2.1.so.7 libgdbm_compat.so.4 libkdb5.so.10 libmpi_usempi_ignore_tkr.so.40 libopenblas-r0.3.33.so libtextstyle.so.0.2.7 preloadable_libintl.so +libevent-2.1.so.7.0.1 libgdbm_compat.so.4.0.0 libkdb5.so.10.0 libmpi_usempi_ignore_tkr.so.40.40.1 libopenblas.a libtinfo.a python3.14 +libevent.a libgettextlib-1.0.so libkrad.so libmpi_usempif08.so libopenblas.so libtinfo.so terminfo +libevent.so libgettextlib.a libkrad.so.0 libmpi_usempif08.so.40 libopenblas.so.0 libtinfo.so.6 +libevent_core-2.1.so.7 libgettextlib.so libkrad.so.0.0 libmpi_usempif08.so.40.40.3 libpanel.a libtinfo.so.6.6 $ ls ~/stacks/views/full -bzip2 hwloc libiconv mpich openssh sqlite -expat krb5 libmd ncurses openssl tar -gcc libbsd libpciaccess netlib-lapack pigz util-linux-uuid -gcc-runtime libedit libxcrypt netlib-scalapack pmix xz -gdbm libevent libxml2 numactl prrte yaksa -gettext libfabric mpc openblas python zlib-ng -gmp libffi mpfr openmpi readline zstd +binutils expat gdbm hwloc libedit libffi libpciaccess lmod mpfr netlib-lapack numactl openssh pmix readline tcl xz +bzip2 gcc gettext krb5 libevent libiconv libxcrypt lua mpich netlib-scalapack openblas openssl prrte sqlite unzip zlib-ng +curl gcc-runtime gmp libbsd libfabric libmd libxml2 mpc ncurses nghttp2 openmpi pigz python tar util-linux-uuid zstd $ ls ~/stacks/views/full/gcc/ -gcc-12.3.0-gcc-11.4.0 -$ ls ~/stacks/views/full/gcc/gcc-12.3.0-gcc-11.4.0 +gcc-16.1.0-gcc-15.2.0 +$ ls ~/stacks/views/full/gcc/gcc-16.1.0-gcc-15.2.0 bin include lib lib64 libexec share diff --git a/outputs/stacks/view-1.out b/outputs/stacks/view-1.out index 092f1c2534..2fc8a2c204 100644 --- a/outputs/stacks/view-1.out +++ b/outputs/stacks/view-1.out @@ -4,12 +4,8 @@ $ spack concretize $ ls ~/stacks/views/default lib $ ls ~/stacks/views/default/lib -cmake libscalapack.so libscalapack.so.2.2 libscalapack.so.2.2.1 pkgconfig python3.14 +cmake libscalapack.so libscalapack.so.2.2 libscalapack.so.2.2.3 pkgconfig python3.14 $ ls ~/stacks/views/full -bzip2 hwloc libiconv mpich openssh sqlite -expat krb5 libmd ncurses openssl tar -gcc libbsd libpciaccess netlib-lapack pigz util-linux-uuid -gcc-runtime libedit libxcrypt netlib-scalapack pmix xz -gdbm libevent libxml2 numactl prrte yaksa -gettext libfabric mpc openblas python zlib-ng -gmp libffi mpfr openmpi readline zstd +binutils expat gdbm hwloc libedit libffi libpciaccess lmod mpfr netlib-lapack numactl openssh pmix readline tcl xz +bzip2 gcc gettext krb5 libevent libiconv libxcrypt lua mpich netlib-scalapack openblas openssl prrte sqlite unzip zlib-ng +curl gcc-runtime gmp libbsd libfabric libmd libxml2 mpc ncurses nghttp2 openmpi pigz python tar util-linux-uuid zstd diff --git a/tutorial_stacks.rst b/tutorial_stacks.rst index 0303b89b1b..dec8365670 100644 --- a/tutorial_stacks.rst +++ b/tutorial_stacks.rst @@ -10,218 +10,210 @@ Stacks Tutorial =============== -We've talked about Spack environments in the context of a unified user environment. -But environments in Spack have much broader capabilities. -In this tutorial we will consider how to use Spack environments to manage large deployments of software. +Spack environments are a powerful tool not just for managing a single user's project, but for deploying entire software stacks. +In this tutorial we will see how to use them to manage large deployments, a common pattern in HPC centers. -What usually differs between a typical environment for a single user, and an environment used to manage large deployments, is that in the latter case we often have a set of packages we want to install across a wide range of MPIs, LAPACKs or compilers. +What usually characterizes these deployments, compared to a typical single-user environment, is the need to provide the same set of packages built against a variety of configurations: different MPI libraries, LAPACK implementations, or compilers. -Below, we'll mimic the creation of a software stack built onto a cross-product of different LAPACK and MPI libraries, with a compiler that is more recent than the one provided by the host system. +Below, we'll build a representative example of such a deployment. +Our goal is to install ``netlib-scalapack`` against: -First, we'll focus on how to properly configure and install the software we want. -We'll learn how to pin certain requirements, and how to write a cross product of specs in a compact, and expressive, way. +- two MPI libraries (``openmpi`` and ``mpich``) +- two LAPACK providers (``openblas`` and ``netlib-lapack``) -We'll consider how the software we install might be consumed by our users, and see the two main mechanisms that Spack provides for that: views and module files. +and compiled with ``gcc@16``, which is newer than the system-provided ``gcc@15``. +We'll also install ``py-scipy`` linked against ``openblas``. -.. note:: - - Before we start this hands-on, make sure the ``EDITOR`` environment variable is set to your preferred editor, for instance: +We'll first focus on how to configure and install the software correctly. +Then we'll discuss how to make it accessible to users through filesystem views and module files. - .. code-block:: console +---------------------------- +Installing a Software Stack +---------------------------- - $ export EDITOR='emacs -nw' +Let's start by creating an environment in a directory of our choice: ------------------- -Setup the compiler ------------------- +.. literalinclude:: outputs/stacks/setup-0.out + :language: console -The first step to build our stack is to setup the compiler we want to use later. -This is currently an iterative process that can be done in two ways: +The first step is to install the compiler we want to use. +Let's write a minimal ``spack.yaml`` that contains just the compiler and ``lmod``, which we'll need later to generate module files: - 1. Install the compiler first, then install the rest of the environment - 2. Install the compiler outside the environment (either in another environment or standalone) +.. literalinclude:: outputs/stacks/examples/compiler.spack.stack.yaml + :language: yaml -Below, we'll use the first approach. -For people interested, an example of composing a compiler from another environment can be found `at this link `_. +Concretize and install: -Let's start by creating an environment in a directory of our choice: - -.. literalinclude:: outputs/stacks/setup-0.out +.. literalinclude:: outputs/stacks/compiler-0.out :language: console -We can add from the command line a new compiler. -We'll also disable the generation of views for the time being, as we'll come back to this topic later in the tutorial: +^^^^^^^^^^^ +Spec groups +^^^^^^^^^^^ -.. literalinclude:: outputs/stacks/setup-1.out - :language: spec +We are now ready to build the software stack on top of this compiler. +To do that cleanly, we'll use *spec groups*, which allow you to organize specs into named collections, each with its own configuration and concretization order. -What you should see on screen now is the following ``spack.yaml`` file: +Let's start with a single spec and a two-group ``spack.yaml``: -.. literalinclude:: outputs/stacks/examples/0.spack.stack.yaml +.. literalinclude:: outputs/stacks/examples/groups-0.spack.stack.yaml :language: yaml - :emphasize-lines: 8 + :emphasize-lines: 7-14 -The next step is to concretize and install our compiler: +The environment declares two groups: -.. literalinclude:: outputs/stacks/setup-2.out - :language: console +1. The ``compiler`` group contains GCC 16 and ``lmod`` (both already installed). +2. The ``stack`` group lists the software we want to deploy. -We are ready to build more software with our newly installed GCC! +The ``needs: [compiler]`` declaration ensures that the ``compiler`` group is always concretized *before* the ``stack`` group, making its specs available for reuse. ------------------------- -Install a software stack ------------------------- +Let's concretize to see this in action: -Now that we have a compiler ready, the next objective is to build software with it. -We'll start by trying to add different versions of ``netlib-scalapack``, linked against different MPI implementations: +.. literalinclude:: outputs/stacks/groups-0.out + :language: console -.. literalinclude:: outputs/stacks/unify-0.out - :language: spec +Notice that the ``compiler`` group is processed first, and ``gcc@16`` is immediately reused by the ``stack`` group. -If we try to concretize the environment, we'll get an error. -We cannot unify an environment with two different configurations of the same package. +We just used ``%gcc@16`` to pin the compiler, but it's a coarse constraint that must be repeated on every spec and does not distinguish between C, C++, and Fortran compilers. +Spec groups offer a better tool: the ``override`` block, which scopes any Spack configuration to a single group. -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Tuning concretizer options for a stack -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. literalinclude:: outputs/stacks/examples/groups-1.spack.stack.yaml + :language: yaml + :emphasize-lines: 11-18,23-30 -Whenever we concretize an environment with more than one root spec, we can configure Spack to be more or less strict with duplicate nodes in the sub-DAG obtained by following link and run edges starting from the roots. -We usually call this sub-DAG the *root unification set*. +Here we used it to set compiler preferences at the language level, once for each group: -A diagram might help visualize the concept: +1. The ``compiler`` group prefers ``gcc@15`` +2. The ``stack`` group prefers ``gcc@16`` -.. image:: _static/images/stacks-unify.svg +These language preferences are expressed once and apply automatically to every spec in the group. -The image above represents the current environment, with our three root specs highlighted by a thicker dashed line. -Any node that could be reached following a link or run edge is part of the root unification set. -Pure build dependencies might fall outside of it. +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Tuning concretizer options +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Now we add a second MPI variant to the stack, listing both ``^openmpi`` and ``^mpich`` variants of ``netlib-scalapack``: + +.. literalinclude:: outputs/stacks/examples/0.spack.stack.yaml + :language: yaml + :emphasize-lines: 22-23 -The config option determining which nodes are allowed to be in the root unification set is ``concretizer:unify``. -Let's check its value: +The ``stack`` group now has two conflicting configurations, so, before concretizing, let's check the ``concretizer:unify`` option: .. literalinclude:: outputs/stacks/unify-2.out :language: console -``concretizer:unify:true`` means that only a single configuration for each package can be present. -This value is good for single project environments, since it ensures we can construct a view of all the software, with the usual structure expected on a Unix-ish system, and without risks of collisions between installations. +With ``unify: true``, the concretizer restricts the environment to a single configuration of each package within its *root unification set*: the nodes reachable from the root specs via link or run edges. +Pure build dependencies, which fall outside the set, are not affected: + +.. image:: _static/images/stacks-unify.svg + +This is the right default for a single-user environment, since it ensures a filesystem view can be built without conflicts. +A software stack, however, requires multiple configurations of the same package by design, so we need to relax this constraint. + +Since only the ``stack`` group has conflicting configurations, we add ``unify: false`` to its ``override`` block and concretize: -We can't respect this requirement, as our roots already contain two different configurations of ``netlib-scalapack``. -Set the value to ``false``, and try to re-concretize: +.. literalinclude:: outputs/stacks/examples/1.spack.stack.yaml + :language: yaml + :emphasize-lines: 32-33 .. literalinclude:: outputs/stacks/unify-3.out :language: console -This time concretization succeeded. -Setting ``concretizer:unify:false`` is effectively concretizing each root spec on its own, and then merging the results into the environment. -This allows us to have the duplicates we need. +With ``unify: false``, Spack concretizes each root spec independently and merges the results, which is exactly what a software stack needs. .. note:: - If the environment is expected to have only a few duplicate nodes, then there's another value we might consider: + If the stack is expected to have only a few duplicate nodes, ``when_possible`` is a less aggressive alternative: - .. code-block:: console + .. code-block:: yaml - $ spack config add concretizer:unify:when_possible + override: + concretizer: + unify: when_possible -With this option Spack will try to unify the environment in an eager way, solving it in multiple rounds. -The concretization at round ``n`` will contain all the specs that could not be unified at round ``n-1``, and will consider all the specs from previous rounds for reuse. + With this option Spack tries to unify the group in an eager, multi-round process. + The concretization at round ``n`` contains all the specs that could not be unified at round ``n-1``, and considers all the specs from previous rounds for reuse. ^^^^^^^^^^^^^ Spec matrices ^^^^^^^^^^^^^ -Let's further expand our stack and consider also linking against different LAPACK providers. -We could, of course, add new specs explicitly: - -.. literalinclude:: outputs/stacks/unify-4.out - :language: spec - -This way of proceeding, though, will become very tedious once more software is requested. -The best way to express a cross-product like this in Spack is instead through a matrix: +Let's further expand our stack to link against different LAPACK providers as well. +Adding them explicitly would be tedious, so we use a *matrix* to express the cross-product compactly: .. literalinclude:: outputs/stacks/examples/2.spack.stack.yaml :language: yaml - :emphasize-lines: 8-12 + :emphasize-lines: 22-25 -Matrices will expand to the cross-product of their rows, so this matrix: +A matrix expands to the cross-product of its rows. +This matrix: .. code-block:: yaml - matrix: - - ["netlib-scalapack"] - - ["^openmpi", "^mpich"] - - ["^openblas", "^netlib-lapack"] - - ["%gcc@12"] + - [netlib-scalapack] + - [^openmpi, ^mpich] + - [^openblas, ^netlib-lapack] -is equivalent to this list of specs: +is equivalent to this explicit list of specs: .. code-block:: yaml - - "netlib-scalapack %gcc@12 ^openblas ^openmpi" - - "netlib-scalapack %gcc@12 ^openblas ^mpich" - - "netlib-scalapack %gcc@12 ^netlib-lapack ^openmpi" - - "netlib-scalapack %gcc@12 ^netlib-lapack ^mpich" + - "netlib-scalapack ^openblas ^openmpi" + - "netlib-scalapack ^openblas ^mpich" + - "netlib-scalapack ^netlib-lapack ^openmpi" + - "netlib-scalapack ^netlib-lapack ^mpich" -We are now ready to concretize and install the environment: +No compiler annotation appears in the matrix rows: the ``override`` block in the ``stack`` group handles that. +Let's concretize to verify our four variants: .. literalinclude:: outputs/stacks/concretize-0.out :language: console -Let's double check which specs we have installed: - -.. literalinclude:: outputs/stacks/concretize-01.out - :language: console - -As we can see we have our four variations of ``netlib-scalapack`` installed. +We now have four variations of ``netlib-scalapack`` ready to install. ^^^^^^^^^^^^^^^^^^^^ Reusable definitions ^^^^^^^^^^^^^^^^^^^^ -So far, we have seen how we can use spec matrices to generate cross-product specs from rows containing a list of constraints. -A common situation you will encounter with large deployments is the necessity to add multiple matrices to the list of specs, that possibly share some of those rows. - -To reduce the amount of duplication needed in the manifest file, and thus the maintenance burden, Spack allows to *define* lists of constraints under the ``definitions`` attribute, and expand them later when needed. -Let's rewrite our manifest accordingly: +So far each matrix row has been written out inline. +When multiple matrices share rows, duplicating them becomes a maintenance burden. +Spack allows *defining* lists of constraints under the ``definitions`` attribute and reusing them across matrices. +Let's rewrite our manifest using definitions: .. literalinclude:: outputs/stacks/examples/3.spack.stack.yaml :language: yaml - :emphasize-lines: 6-10,14-18 + :emphasize-lines: 6-9,27-30 -Check that re-concretizing won't change the environment: +Concretizing confirms the result is identical: .. literalinclude:: outputs/stacks/concretize-1.out :language: console -Now we can use those definitions to add e.g. serial packages built against the LAPACK libraries. -Let's try to do that by using ``py-scipy`` as an example: - -Another useful ability is excluding specific entries from a cross-product matrix. -We can do that with the ``exclude`` keyword, in the same item as the ``matrix``. -Try to remove ``py-scipy ^netlib-lapack`` from our matrix: +Now that we have definitions, we can add a second matrix for serial packages that link against LAPACK but not MPI. +In a real deployment this list might include many packages, but here we use just ``py-scipy`` as an example. +Not every combination is meaningful though: ``py-scipy ^netlib-lapack`` is not a useful build, so we use ``exclude`` to drop that specific entry from the cross-product: .. literalinclude:: outputs/stacks/examples/4bis.spack.stack.yaml :language: yaml - :emphasize-lines: 11,20-25 + :emphasize-lines: 10,32-36 -Concretize the environment and install the specs again: +Concretize the environment again: .. literalinclude:: outputs/stacks/concretize-3.out :language: console -At this point, the environment contains only ``py-scipy ^openblas``. -Verify it: +The exclusion worked: the environment contains only ``py-scipy ^openblas``. -.. literalinclude:: outputs/stacks/concretize-4.out - :language: spec ^^^^^^^^^^^^^^^^^^^^^^^ Conditional definitions ^^^^^^^^^^^^^^^^^^^^^^^ -Spec list definitions can also be conditioned on a ``when`` clause. -The ``when`` clause is a Python conditional that is evaluated in a restricted environment. -The variables available in ``when`` clauses are: +A common need in multi-site or multi-cluster deployments is enabling different software sets based on environment variables or host properties. +Definitions support a ``when`` clause for exactly this. +``when`` is a Python expression evaluated at concretization time, with access to the following variables: ================= =========== variable name value @@ -231,52 +223,60 @@ variable name value ``target`` The default spack target string for this machine ``architecture`` The default spack architecture string platform-os-target for this machine ``arch`` Alias for ``architecture`` -``env`` A dictionary representing the users environment variables +``env`` A dictionary representing the user's environment variables ``re`` The python ``re`` module for regex ``hostname`` The hostname of this node ================= =========== -Suppose we want to limit usage to only ``mpich``, unless the ``SPACK_STACK_USE_OPENMPI`` environment variable is set. -To do so we could write the following ``spack.yaml``: +Suppose we want to build with ``mpich`` by default, and add ``openmpi`` when a site-specific environment variable is set. +We can express this with two definitions of ``mpis``, the second guarded by a ``when`` clause: .. literalinclude:: outputs/stacks/examples/5.spack.stack.yaml :language: yaml :emphasize-lines: 7-9 -Different definitions of lists with the same name are concatenated, so we can define our MPI list in one place unconditionally, and then conditionally append one or more values to it. +When multiple definitions share the same name, they are concatenated, so the conditional entry simply appends ``openmpi`` to the list when the variable is set. -First, check what happens when we concretize and don't set any environment variable: +First, concretize without the variable: .. literalinclude:: outputs/stacks/concretize-5.out :language: spec -As we expected we are only using ``mpich`` as an MPI provider. -To get ``openmpi`` back we need to set the appropriate environment variable: +Only ``mpich`` is used. +Now set the variable and re-concretize: .. literalinclude:: outputs/stacks/concretize-6.out :language: console -There is no need to install this time, since all the specs were still in the store. +Both MPI providers are now active. + +We now have a complete, well-structured environment. +It's time to install it: + +.. literalinclude:: outputs/stacks/install-0.out + :language: console ^^^^^^^^^^^^^^^^^^^^^ Other useful features ^^^^^^^^^^^^^^^^^^^^^ -Sometimes it might be useful to create a local source mirror for the specs installed in an environment. -If the environment is active, this is as simple as: +Before moving to views and modules, two other features are worth knowing about. + +The first is source mirrors. +When the environment is active, creating one is as simple as: .. code-block:: console $ spack mirror create --all -d ./stacks-mirror -This command fetches all the tarballs for the packages in the ``spack.lock`` file, and puts them in the directory passed as argument. -Later you can move this mirror to e.g. an air-gapped machine and: +This fetches all the tarballs listed in ``spack.lock`` into the given directory. +You can then move the mirror to an air-gapped machine and register it with: .. code-block:: console $ spack mirror add -to be able to re-build the specs from sources. +This lets you rebuild the specs from source on the target machine. Alternatively, to create a buildcache you can: .. code-block:: console @@ -286,97 +286,66 @@ Alternatively, to create a buildcache you can: Don't forget to set an appropriate value for the padding of the install tree, see `how to setup relocation `_ in our documentation. -By default, Spack installs one package at a time, using the ``-j`` option where it can. -The ``spack install`` command has an optional ``-p`` option for the number of packages to build in parallel. -Note that each parallel package may consume the number of threads of the ``-j`` option. -You can use node resources more optimally by creating a ``depfile``, when the environment is active: +-------------------------- +Multiple Filesystem Views +-------------------------- -.. code-block:: console - - $ spack env depfile -o Makefile - -The result is a makefile that starts multiple Spack instances, and the resources are shared through the GNU jobserver. -More information of this feature can be found `in our documentation `_. -This might cut down your build time by a fair amount, if you build frequently from sources. -Expect this feature to be streamlined in future versions of Spack. - ------------------------------------ -Make the software stack easy to use ------------------------------------ - -Now that the software stack has been installed, we need to focus on how it can be used by our customers. -We'll first see how we can configure views to project a subset of the specs we installed onto a filesystem folder with the usual Unix structure. -Then we'll have a similar discussion for module files. -Which of the two approaches is better depends strongly on the use case at hand. - -^^^^^^^^^^^^^^^^ -View descriptors -^^^^^^^^^^^^^^^^ +Views give users access to the installed software through standard filesystem paths, without requiring them to interact with Spack directly. +A stack, however, contains multiple configurations of the same package, which would conflict in a single merged directory tree. +Instead, we define *multiple views*, each covering a curated subset of the stack, with optional projections that control the directory layout. -At the beginning, we configured Spack not to create a view for this stack because simple views won't work with stacks. -We've been concretizing multiple packages of the same name, and they would conflict if linked into the same view. - -What we can do is create *multiple views*, using view descriptors. -This would allows us to define which packages are linked into the view, and how. -Edit our ``spack.yaml`` file again. +Let's add view descriptors to our ``spack.yaml``: .. literalinclude:: outputs/stacks/examples/6.spack.stack.yaml :language: yaml - :emphasize-lines: 30-43 + :emphasize-lines: 49-62 -In the configuration above we created two views, named ``default`` and ``full``. -The ``default`` view consists of all the packages that are compiled with ``gcc@12``, but do not depend on either ``mpich`` or ``netlib-lapack``. -As we can see, we can both *include* and *exclude* specs using constraints. +We defined two views, ``default`` and ``full``. +The ``default`` view consists of all the packages compiled with ``gcc@16``, excluding those that depend on ``mpich`` or ``netlib-lapack``. +View descriptors accept both ``select`` and ``exclude`` constraints. -The ``full`` view contains a more complex projection, so to put each spec into an appropriate subdirectory, according to the first constraint that the spec matches. -``all`` is the default projection, and has always the lowest priority, independent of the order in which it appears. +The ``full`` view uses a more complex projection to place each spec into an appropriate subdirectory, according to the first constraint that matches. +``all`` is the default projection and always has the lowest priority, regardless of the order in which it appears. To avoid confusion, we advise always keeping it last in projections. -Concretize to regenerate the views, and check their structure: +Concretize to regenerate the views and check their structure: .. literalinclude:: outputs/stacks/view-0.out :language: console -The view descriptor also contains a ``link`` key. -The default behavior, as we have seen, is to link all packages, including implicit link and run dependencies, into the view. -If we set the option to "roots", Spack links only the root packages into the view. +By default, a view includes all packages, link and run dependencies included. +Setting ``link: roots`` restricts it to root specs only: .. literalinclude:: outputs/stacks/examples/7.spack.stack.yaml :language: yaml - :emphasize-lines: 35 + :emphasize-lines: 54 .. literalinclude:: outputs/stacks/view-1.out :language: console -Now we see only the root libraries in the default view. +Now we see only the root packages in the default view. The rest are hidden, but are still available in the full view. -The complete documentation on views can be found `here `_. - -^^^^^^^^^^^^ -Module files -^^^^^^^^^^^^ - -Module files are another very popular way to use software on HPC systems. -In this section we'll show how to configure and generate a hierarchical module structure, suitable for ``lmod``. +Full documentation on views is available in the `Spack environments guide `_. -A more in-depth tutorial, focused only on module files, can be found at :ref:`modules-tutorial`. -There we discuss the general architecture of module file generation in Spack and we highlight differences between ``environment-modules`` and ``lmod`` that won't be covered in this section. +------------ +Module Files +------------ -Let's start by adding ``lmod`` to the software installed with the system compiler: +Module files are the standard mechanism for managing multiple software versions on HPC systems. +In this section we'll show how to configure and generate a hierarchical module structure with ``lmod``. -.. code-block:: spec +.. note:: - $ spack add lmod%gcc@11 - $ spack concretize - $ spack install + A more in-depth tutorial, focused only on module files, can be found at :ref:`modules-tutorial`. + It covers the general architecture and differences between ``environment-modules`` and ``lmod`` that are out of scope here. -Once that is done, let's add the ``module`` command to our shell like this: +Since ``lmod`` is already part of our compiler group and has been installed, we just need to add the ``module`` command to our shell: .. code-block:: console $ . $(spack location -i lmod)/lmod/lmod/init/bash -If everything worked out correctly you should have the module command available in your shell: +You should now have the ``module`` command available: .. literalinclude:: outputs/stacks/modules-1.out :language: console @@ -385,57 +354,63 @@ The next step is to add some basic configuration to our ``spack.yaml`` to genera .. literalinclude:: outputs/stacks/examples/8.spack.stack.yaml :language: yaml - :emphasize-lines: 31-42 + :emphasize-lines: 50-61 + +This configuration tells Spack to: -In these few lines of additional configuration we told Spack to generate ``lmod`` module files in a subdirectory named ``modules``, using a hierarchy comprising both ``lapack`` and ``mpi``. -We've also configured it to place all specs built with our system compiler into the ``Core`` designation in the lmod hierarchy. +- generate ``lmod`` module files under ``modules/``, with a hierarchy based on ``mpi`` and ``lapack`` +- place all specs built with the system compiler (``%gcc@15``) into the ``Core`` designation We can generate the module files and use them with the following commands: .. code-block:: console $ spack module lmod refresh -y - $ module use $PWD/stacks/modules/linux-ubuntu22.04-x86_64/Core + $ module use $PWD/stacks/modules/linux-ubuntu26.04-x86_64/Core -Now we should be able to see the module files that have been generated: +Let's check the generated module files: .. literalinclude:: outputs/stacks/modules-2.out :language: console The set of modules is already usable, and the hierarchy already works. -For instance, we can load the ``gcc`` compiler and check that we have ``gcc`` in out path and we have a lot of modules available - all the ones compiled with ``gcc@12``: +For instance, we can load the ``gcc`` compiler and check that we have ``gcc`` in our path and a lot of modules available, all compiled with ``gcc@16``: .. literalinclude:: outputs/stacks/modules-3.out :language: console -There are a few issues though. -For instance, we have a lot of modules generated from dependencies of ``gcc`` that are cluttering the view, and won't likely be needed directly by users. -Then, module names contain hashes, which prevent users from being able to reuse the same script in similar, but not equal, environments. +The default configuration has a few rough edges, though: -Also, some of the modules might need to set custom environment variables, which are specific to the deployment aspects that are not part of the hash - for instance a policy at the deploying site. +- dependency modules from ``gcc`` clutter the listing with packages users will never load directly +- hashes in module names make scripts non-portable across similar environments +- some modules may need custom environment variables specific to site policy -To address all these needs we can complicate our ``modules`` configuration a bit more: +To address all these needs, we can extend our ``modules`` configuration: .. literalinclude:: outputs/stacks/examples/9.spack.stack.yaml :language: yaml - :emphasize-lines: 41-59 + :emphasize-lines: 62-78 -Regenerate the modules again: +Regenerate the modules: .. literalinclude:: outputs/stacks/modules-4.out :language: console -Now we have a set of module files without hashes, with a correct hierarchy, and with all our custom modifications: +Now we have module files without hashes, a correct hierarchy, and our custom environment variables: .. literalinclude:: outputs/stacks/modules-5.out :language: console -This concludes the quick tour of module file generation, and the tutorial on stacks. +This concludes the stacks tutorial. ------- Summary ------- -In this tutorial, we configured Spack to install a stack of software built on a cross-product of different MPI and LAPACK libraries. -We used the spec matrix syntax to express in a compact way the specs to be installed, and spec list definitions to reuse the same matrix rows in different places. -Then, we discussed how to make the software easy to use, leveraging either filesystem views or module files. +In this tutorial we built a realistic HPC software stack: a cross-product of MPI and LAPACK libraries, compiled with a newer compiler than the system default. +Along the way we used: + +- **Spec groups** with ``needs`` and ``override`` to control build order and compiler selection per group +- **Spec matrices** and **definitions** to express the cross-product concisely +- **Conditional definitions** to make the MPI selection configurable at concretization time +- **Filesystem views** and **module files** to make the software accessible to users