Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spack Incorrectly Using Dependencies Built With Other Compliers #1387

Closed
rjdave opened this issue Nov 20, 2024 · 5 comments
Closed

Spack Incorrectly Using Dependencies Built With Other Compliers #1387

rjdave opened this issue Nov 20, 2024 · 5 comments
Labels
bug Something is not working

Comments

@rjdave
Copy link

rjdave commented Nov 20, 2024

Describe the bug
After building the jedi-ufs-env with the intel compiler, I tried building it with gcc. The build fails because g2 tries to use the module bacio_module.mod which was built with Intel. Fortran modules are almost always incompatible between compilers and sometimes even between different versions of the same compiler.

To Reproduce
Use spack-stack to configure and build the jedi-ufs-env environment with the Intel compilers, then do the same with GCC. You will notice that during concretization, spack incorporates (marked with [+]) several packages (including bacio) that are built with Intel compilers:

[+]  nsijnfm      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge`

This is intended and expected from spack to reduce the need to rebuild dependencies unnecessarily. This probably works fine for C and C++ codes but is unlikely to ever work for any packages containing Fortran modules.

I was able to work around this problem by adding the --fresh flag to concretize to instruct it not to attempt to reuse dependencies.

Expected behavior
It should be smart enough to not allow software that has Fortran module components to be reused as dependencies.

System:
Linux Workstation running Rocky 9. Intel is 2023.0.0 (2021.8.0 legacy compilers (icc,icpc,ifort)) and GCC is 11.4.1 system package manager install.

Additional context
The actual error from the g2 package is below and is thrown by any use bacio_module line in the code.

f951: Fatal Error: Reading module '/opt/spack-stack/intel/2021.8.0/bacio-2.4.1-nsijnfm/include_4/bacio_module.mod' at line 1 column 2: Unexpected EOF
compilation terminated.
make[2]: *** [tests/CMakeFiles/test_g2_4.dir/build.make:91: tests/CMakeFiles/test_g2_4.dir/g2_test_util.F90.o] Error 1
@rjdave rjdave added the bug Something is not working label Nov 20, 2024
@rjdave
Copy link
Author

rjdave commented Nov 20, 2024

Note that this was not an issue in previous stack releases so perhaps this has something to do with boost now being compiled with gcc even when compiling with Intel. I'm guessing that fact is related to the efforts to get spack-stack to build with the newer LLVM Intel compilers.

@climbfuji
Copy link
Collaborator

Can you explain please how you were trying to build the gcc environment after building the intel environment? You must do this in a separate environment using the --compiler=xxx flags. There can be only one preferred compiler (which is selected with --compiler=...) per environment.

@rjdave
Copy link
Author

rjdave commented Nov 21, 2024

To create the Intel environment I used the following command:

spack stack create env --compiler intel --site linux.default --name devel2024-10-28_intel --prefix /opt/spack-stack

To create the GCC environment I used:

spack stack create env --compiler gcc --site linux.default --name devel2024-10-28_gcc --prefix /opt/spack-stack

For reference, here is the concretize output for Intel followed by GCC without the --fresh flag:

==> Concretized jedi-ufs-env%intel
 -   2wcbqwp  [email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=bundle arch=linux-rocky9-sandybridge
 -   nsijnfm      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   to4kczp          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-rocky9-sandybridge
 -   mllqrdj              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-rocky9-sandybridge
 -   gcdaajv                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  b5axz5x                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   la2c7bt              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-rocky9-sandybridge
 -   xbzfo5f              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
[e]  w6ba6dj          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~guile build_system=generic patches=599f134 arch=linux-rocky9-sandybridge
 -   aztmgby      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441 -fp-model precise' fflags='-diag-disable=10441 -fp-model precise' ~debug~external-lapack+external-parallelio+mpi+netcdf~pnetcdf+python+shared~xerces build_system=makefile esmf_comm=auto esmf_os=auto esmf_pio=auto patches=f63d405 snapshot=none arch=linux-rocky9-sandybridge
 -   tu7qkit          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +blosc~byterange+dap~fsync~hdf4~jna~logging+mpi~nczarr_zip+optimize~parallel-netcdf+pic+shared~szip+zstd build_system=autotools patches=0161eb8 arch=linux-rocky9-sandybridge
[e]  szs2ont              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~debug~pic+shared build_system=generic arch=linux-rocky9-sandybridge
 -   67xkam6              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +avx2~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   6fjzazu                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic+shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   sz6g2qq              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic~python+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   5d4e754              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic+programs build_system=makefile compression=none libs=shared,static arch=linux-rocky9-sandybridge
 -   p6hr4r7          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   26xih74          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~atomics~cuda~cxx~cxx_exceptions~gpfs~internal-hwloc~internal-libevent~internal-pmix~java~legacylaunchers~lustre~memchecker~openshmem~orterunprefix~romio+rsh~singularity~static+two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics=none romio-filesystem=none schedulers=none arch=linux-rocky9-sandybridge
 -   ngypb7q              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   wky6pc5                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ikzenfw                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ykj7h4b              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +openssl build_system=autotools arch=linux-rocky9-sandybridge
 -   hhdzwck              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=4e1d78c,62fc8a8,ff37630 arch=linux-rocky9-sandybridge
[e]  e6vui7x                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=7793209 arch=linux-rocky9-sandybridge
[e]  sn7k6aq                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  d2ej6uy                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  hepjrhx              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +gssapi build_system=autotools arch=linux-rocky9-sandybridge
 -   ie27xky              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +internal_glib build_system=autotools arch=linux-rocky9-sandybridge
 -   n5nmqdx              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~docs+pmi_backwards_compatibility~python~restful build_system=autotools arch=linux-rocky9-sandybridge
 -   ytntapp          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +fortran~ipo~logging+mpi~ncint+pnetcdf+shared~timing build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   wrkowv2              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~burstbuffer+cxx+fortran+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   j3b3bd4          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   pq5d7qz              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip patches=c4369ad arch=linux-rocky9-sandybridge
 -   h7lj5ic          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip patches=873745d arch=linux-rocky9-sandybridge
 -   en6s6dv          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   jgaoakt          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +libyaml build_system=python_pip arch=linux-rocky9-sandybridge
 -   ecx6kbh              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   gsbvu6x          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   rki5k5s          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   bb76m6u          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +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-rocky9-sandybridge
 -   53zdtfy              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +libbsd build_system=autotools arch=linux-rocky9-sandybridge
 -   emw5ozu                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ghx2ieg                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   nsx2dvj              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  fvntb5f              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-rocky9-sandybridge
 -   j3mslel              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   lbndqx4              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~obsolete_api build_system=autotools patches=4885da3 arch=linux-rocky9-sandybridge
 -   ik2djfi              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~docs+shared build_system=generic certs=mozilla arch=linux-rocky9-sandybridge
 -   ilfdnig                  ^ca-certificates-mozilla@2023-05-30%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   bsujsz6              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=bbf97f1 arch=linux-rocky9-sandybridge
[e]  eknht26              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-rocky9-sandybridge
 -   ogn4pph              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  gmpblde              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~pic build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   hyn2mpf          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   ygm7r3j      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +deprecated_io+gfs_phys+internal_file_nml~ipo~large_file+openmp+pic+quad_precision~shared~yaml build_system=cmake build_type=Release constants=GFS generator=make patches=2b12a6c precision=32,64 arch=linux-rocky9-sandybridge
 -   7ooukhn      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic+w3emc build_system=cmake build_type=Release generator=make precision=4,d arch=linux-rocky9-sandybridge
 -   od3o3px          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +jpeg~opengl+shared build_system=generic build_type=Release arch=linux-rocky9-sandybridge
 -   kh7rcxl              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~jpeg8~partial_decoder+pic build_system=cmake build_type=Release generator=make libs=shared,static arch=linux-rocky9-sandybridge
 -   r3agrwk                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   zcmfu5c          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic build_system=cmake build_type=Release generator=make libs=shared,static arch=linux-rocky9-sandybridge
 -   3tvknnr      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  7c3ui5f      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   3fw4yp3      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~deprecated~ipo+openmp+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
 -   gj4ic55      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +bufrquery+fftw+hdf4 build_system=bundle arch=linux-rocky9-sandybridge
 -   2tc23it          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=bundle arch=linux-rocky9-sandybridge
[e]  wb7ycxa              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +man+nls+perl+subtree~svn~tcltk build_system=autotools arch=linux-rocky9-sandybridge
 -   axa4tx3              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  4hbgce2              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~libpsl~pcre~python+zlib build_system=autotools ssl=openssl arch=linux-rocky9-sandybridge
[e]  g3ozyte          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~color build_system=autotools arch=linux-rocky9-sandybridge
 -   iaytf7h          ^[email protected]%[email protected]~atomic+chrono~clanglibcpp~container~context~contract~coroutine+date_time~debug+exception~fiber+filesystem~graph~graph_parallel~icu~iostreams~json~locale~log~math~mpi+multithreaded~nowide~numpy+pic+program_options+python~random+regex+serialization+shared~signals~singlethreaded~stacktrace+system~taggedlayout+test+thread+timer~type_erasure~versionedlayout~wave build_system=generic cxxstd=17 patches=a440f96,b8569d7 visibility=hidden arch=linux-rocky9-sandybridge
 -   tj6vdlm              ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   7wknxnn          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+python+shared+utils build_system=cmake build_type=Release generator=make test_files=none arch=linux-rocky9-sandybridge
 -   uf44xnw          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+python build_system=cmake build_type=Release generator=make patches=3ae2f2f arch=linux-rocky9-sandybridge
 -   cwzwhx6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~fismahigh~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   es5kmxa          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +aec~fortran~ipo~memfs~netcdf~openmp+png~pthreads+shared+tools build_system=cmake build_type=Release extra_definitions=none generator=make jp2k=openjpeg arch=linux-rocky9-sandybridge
 -   h5rgh32              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   t44bc6f              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~codec~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   qdyq6f4          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +admin+aio~curl~fismahigh~ipo~jemalloc+mpi+openmp+sql~ssl+tools+unicode+xxhash build_system=cmake build_type=RelWithDebInfo compression=bzip2,lz4 generator=make linalg=eigen,lapack arch=linux-rocky9-sandybridge
 -   2jsvxkp              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic build_system=makefile libs=shared,static arch=linux-rocky9-sandybridge
 -   5us6tlz          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +eigen+fckit+fftw~fismahigh~ipo+openmp+shared+tesselation+trans build_system=cmake build_type=RelWithDebInfo generator=make patches=b0b491d arch=linux-rocky9-sandybridge
 -   buu2ip4              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +double_precision~fftw~ipo+mkl+mpi+openmp+single_precision+transi build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-rocky9-sandybridge
 -   v5uhjhl                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +fckit~ipo+mpi+openmp build_system=cmake build_type=RelWithDebInfo generator=make patches=0ca3d0d arch=linux-rocky9-sandybridge
 -   ucdq7pi              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   qzodfv6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-rocky9-sandybridge
 -   m2pyukc          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +eckit~fismahigh~ipo+openmp+shared build_system=cmake build_type=RelWithDebInfo finalize_ddts=auto generator=make arch=linux-rocky9-sandybridge
[e]  bgwhzbd          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +lex~nls build_system=autotools patches=f8b85a0 arch=linux-rocky9-sandybridge
[e]  xz3n5cq          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=makefile arch=linux-rocky9-sandybridge
 -   odj5uex          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+mkl build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   qvqy6gj              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~openmp+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
 -   z65guwl          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cmake_export_package_registry~compat_header~cuda_tests~examples~ipo~legacy_headers~static_analysis_demos~tests build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   dah725f          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +external-xdr~fortran~java~netcdf+pic~shared~szip build_system=autotools patches=49733dd,5434f29,ce75518,d54592d,f7d67e8 arch=linux-rocky9-sandybridge
 -   fs567wv              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +gssapi build_system=autotools arch=linux-rocky9-sandybridge
 -   ragse42                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +shared build_system=autotools arch=linux-rocky9-sandybridge
[e]  7iq2dqu                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=440b954 arch=linux-rocky9-sandybridge
 -   6ii6igo          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cluster+envmods~ilp64+shared build_system=generic mpi_family=none threads=none arch=linux-rocky9-sandybridge
 -   mv4uwan              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+shared+tm build_system=cmake build_type=Release cxxstd=default generator=make patches=91755c6 arch=linux-rocky9-sandybridge
 -   7erluah          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  722hj23          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   dl6fups          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   7z4yrof          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+multiple_headers build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   op3f5m6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   fjfzume          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~fortran~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   ta5ec7y          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   ikqvrtu              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   wb66n4t              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   kpghe2r                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   a5jj3al              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip patches=6701e0e arch=linux-rocky9-sandybridge
 -   sedem5x          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   4d7qyl7          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~mpi build_system=python_pip arch=linux-rocky9-sandybridge
 -   53rokzw              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   jszapk6                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   pxgwdjf          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~mpi build_system=python_pip patches=255b5ae arch=linux-rocky9-sandybridge
 -   4r2y2we              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   tmn3byy          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +excel+performance build_system=python_pip arch=linux-rocky9-sandybridge
 -   be7tqnl              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   5agwid4                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +toml build_system=python_pip arch=linux-rocky9-sandybridge
 -   iprgmtg              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   kwdmuwa              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   ag2xdth                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   3o4apzn              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   dlxyism              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   ljjwimo              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   yebuxdg              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   xbgi7ka              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   yd4nkbq          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=ninja arch=linux-rocky9-sandybridge
 -   4nzfbcr              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +re2c build_system=generic arch=linux-rocky9-sandybridge
 -   qvybp5z                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
 -   o7nwsrs          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   kahzpsp          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   apifvy7          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   cpapv63              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +toml build_system=python_pip arch=linux-rocky9-sandybridge
 -   bnk6xtn                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   y5wmtxe                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   zelv5vu              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   tvxa7fw          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   pjtcxz5              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   keewrvb                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip patches=0f0b1bd arch=linux-rocky9-sandybridge
 -   ejdrgo4                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   cce3jw7              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   t7fhjkg                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   4xymjaj                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   s6swycd                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   c3ecqdx          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~io~parallel build_system=python_pip arch=linux-rocky9-sandybridge
 -   pmuh6ci              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   7g6seep                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=python_pip arch=linux-rocky9-sandybridge
 -   7cbrttz          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +shared build_system=autotools arch=linux-rocky9-sandybridge
 -   s2p6pam      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~debug+extdata2g~f2py+fargparse~ipo+pflogger~pfunit~shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   wfkeaol          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   qfsrl2m          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  6yi5ggi              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-rocky9-sandybridge
 -   ilmwc3k          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   rdykhu6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cxx+fortran+hl~ipo~java~map+mpi+shared~subfiling~szip+threadsafe+tools api=default build_system=cmake build_type=Release generator=make patches=82088c8 arch=linux-rocky9-sandybridge
[e]  naptzj7          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cpanm~opcode+open+shared+threads build_system=generic arch=linux-rocky9-sandybridge
 -   hayyq73          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+mpi build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   lmvfcew              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~fismahigh~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   yxgtamd      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+mpi build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   ypvu5pg      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~pfunit build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   v62lfca      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~pfunit build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   bkeibpb      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~bufr+extradeps~ipo+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
 -   lq3agql      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge

==> Concretized nco%intel
 -   indbns2  [email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc build_system=autotools patches=f8c0c0e arch=linux-rocky9-sandybridge
 -   vblgqmd      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +cxx~java~pic~python build_system=autotools patches=33897ad arch=linux-rocky9-sandybridge
[e]  g3ozyte      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~color build_system=autotools arch=linux-rocky9-sandybridge
[e]  bgwhzbd      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +lex~nls build_system=autotools patches=f8b85a0 arch=linux-rocky9-sandybridge
[e]  7c3ui5f      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  w6ba6dj      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~guile build_system=generic patches=599f134 arch=linux-rocky9-sandybridge
 -   jqdb4mu      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~external-cblas+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   tu7qkit      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +blosc~byterange+dap~fsync~hdf4~jna~logging+mpi~nczarr_zip+optimize~parallel-netcdf+pic+shared~szip+zstd build_system=autotools patches=0161eb8 arch=linux-rocky9-sandybridge
[e]  szs2ont          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~debug~pic+shared build_system=generic arch=linux-rocky9-sandybridge
 -   67xkam6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +avx2~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   to4kczp              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-rocky9-sandybridge
 -   la2c7bt                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-rocky9-sandybridge
 -   2jsvxkp              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic build_system=makefile libs=shared,static arch=linux-rocky9-sandybridge
 -   6fjzazu              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic+shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   mllqrdj          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-rocky9-sandybridge
 -   gcdaajv              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  b5axz5x                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ik2djfi              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~docs+shared build_system=generic certs=mozilla arch=linux-rocky9-sandybridge
 -   ilfdnig                  ^ca-certificates-mozilla@2023-05-30%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
[e]  naptzj7              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cpanm~opcode+open+shared+threads build_system=generic arch=linux-rocky9-sandybridge
 -   ie27xky              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +internal_glib build_system=autotools arch=linux-rocky9-sandybridge
 -   rdykhu6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cxx+fortran+hl~ipo~java~map+mpi+shared~subfiling~szip+threadsafe+tools api=default build_system=cmake build_type=Release generator=make patches=82088c8 arch=linux-rocky9-sandybridge
 -   sz6g2qq          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic~python+shared build_system=autotools arch=linux-rocky9-sandybridge
[e]  gmpblde              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~pic build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   26xih74          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~atomics~cuda~cxx~cxx_exceptions~gpfs~internal-hwloc~internal-libevent~internal-pmix~java~legacylaunchers~lustre~memchecker~openshmem~orterunprefix~romio+rsh~singularity~static+two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics=none romio-filesystem=none schedulers=none arch=linux-rocky9-sandybridge
 -   ngypb7q              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   wky6pc5                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ikzenfw                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ykj7h4b              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +openssl build_system=autotools arch=linux-rocky9-sandybridge
 -   hhdzwck              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=4e1d78c,62fc8a8,ff37630 arch=linux-rocky9-sandybridge
[e]  e6vui7x                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools patches=7793209 arch=linux-rocky9-sandybridge
[e]  sn7k6aq                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  d2ej6uy                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  6yi5ggi                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-rocky9-sandybridge
[e]  hepjrhx              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +gssapi build_system=autotools arch=linux-rocky9-sandybridge
 -   n5nmqdx              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~docs+pmi_backwards_compatibility~python~restful build_system=autotools arch=linux-rocky9-sandybridge
 -   xbzfo5f          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   5d4e754          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic+programs build_system=makefile compression=none libs=shared,static arch=linux-rocky9-sandybridge
 -   7cbrttz      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +shared build_system=autotools arch=linux-rocky9-sandybridge
 -   53zdtfy          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +libbsd build_system=autotools arch=linux-rocky9-sandybridge
 -   emw5ozu              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   ghx2ieg                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge

You might notice that with GCC, nco is not it's own spec because I added nco to jedi-ufs-env. This was to see if it is a workaround to #1360. However, the issue of spack trying to use Intel built dependencies was present before I added nco to jedi-ufs-env.

==> Concretized jedi-ufs-env%gcc
 -   s7iik3c  [email protected]%[email protected] build_system=bundle arch=linux-rocky9-sandybridge
[+]  nsijnfm      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo+pic build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  to4kczp          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-rocky9-sandybridge
[+]  mllqrdj              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-rocky9-sandybridge
[+]  gcdaajv                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  b5axz5x                      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[+]  ik2djfi                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~docs+shared build_system=generic certs=mozilla arch=linux-rocky9-sandybridge
[+]  ilfdnig                      ^ca-certificates-mozilla@2023-05-30%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=generic arch=linux-rocky9-sandybridge
[e]  naptzj7                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cpanm~opcode+open+shared+threads build_system=generic arch=linux-rocky9-sandybridge
[+]  ie27xky                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +internal_glib build_system=autotools arch=linux-rocky9-sandybridge
[+]  la2c7bt              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-rocky9-sandybridge
[+]  xbzfo5f              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
[e]  7c3ui5f          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
[e]  w6ba6dj          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~guile build_system=generic patches=599f134 arch=linux-rocky9-sandybridge
 -   t2suvx2      ^[email protected]%[email protected]~debug~external-lapack+external-parallelio+mpi+netcdf~pnetcdf+python+shared~xerces build_system=makefile esmf_comm=auto esmf_os=auto esmf_pio=auto patches=f63d405 snapshot=none arch=linux-rocky9-sandybridge
[e]  vy6454z          ^[email protected]%[email protected]~guile build_system=generic patches=599f134 arch=linux-rocky9-sandybridge
 -   dkiwepy          ^[email protected]%[email protected]+blosc~byterange+dap~fsync~hdf4~jna~logging+mpi~nczarr_zip+optimize~parallel-netcdf+pic+shared~szip+zstd build_system=autotools patches=0161eb8 arch=linux-rocky9-sandybridge
[e]  ugcamg7              ^[email protected]%[email protected]~debug~pic+shared build_system=generic arch=linux-rocky9-sandybridge
 -   o2i73zk              ^[email protected]%[email protected]+avx2~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   cruhwyk                  ^[email protected]%[email protected]~ipo+pic+shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   c5m6imr              ^[email protected]%[email protected]~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs=shared,static tls=openssl arch=linux-rocky9-sandybridge
 -   urk55dx                  ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[e]  uryzysc                      ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   5k6na3p              ^[email protected]%[email protected]+pic~python+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   t3qbzeh              ^[email protected]%[email protected]+compat+new_strategies+opt+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
[+]  5d4e754              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +pic+programs build_system=makefile compression=none libs=shared,static arch=linux-rocky9-sandybridge
 -   666kng3          ^[email protected]%[email protected]~doc+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   poduvvj          ^[email protected]%[email protected]~atomics~cuda~cxx~cxx_exceptions~gpfs~internal-hwloc~internal-libevent~internal-pmix~java~legacylaunchers~lustre~memchecker~openshmem~orterunprefix~romio+rsh~singularity~static+two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics=none romio-filesystem=none schedulers=none arch=linux-rocky9-sandybridge
 -   lcdg65o              ^[email protected]%[email protected]~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   xjxjqin                  ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   uxgye33                      ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   h27g4lc              ^[email protected]%[email protected]+openssl build_system=autotools arch=linux-rocky9-sandybridge
 -   a3uxzhv              ^[email protected]%[email protected] build_system=autotools patches=4e1d78c,62fc8a8,ff37630 arch=linux-rocky9-sandybridge
[e]  tnjyrcj                  ^[email protected]%[email protected] build_system=autotools patches=7793209 arch=linux-rocky9-sandybridge
[e]  yt5g65y                  ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[e]  ku6egwp                  ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[e]  upl4h4c              ^[email protected]%[email protected]+gssapi build_system=autotools arch=linux-rocky9-sandybridge
 -   2uq5yta              ^[email protected]%[email protected]+internal_glib build_system=autotools arch=linux-rocky9-sandybridge
 -   kms4c2g              ^[email protected]%[email protected]~docs+pmi_backwards_compatibility~python~restful build_system=autotools arch=linux-rocky9-sandybridge
 -   wuml46t          ^[email protected]%[email protected]+fortran~ipo~logging+mpi~ncint+pnetcdf+shared~timing build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   er6zuux              ^[email protected]%[email protected]~burstbuffer+cxx+fortran+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   xf72x34          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   wpof54q              ^[email protected]%[email protected] build_system=python_pip patches=c4369ad arch=linux-rocky9-sandybridge
 -   2dcqrav          ^[email protected]%[email protected] build_system=python_pip patches=873745d arch=linux-rocky9-sandybridge
 -   7uceeai          ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   n3pfbaf          ^[email protected]%[email protected]+libyaml build_system=python_pip arch=linux-rocky9-sandybridge
 -   vmuocs6              ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   lzlcapi          ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   wzxzlmv          ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   lyopobf          ^[email protected]%[email protected]+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-rocky9-sandybridge
 -   leugyqc              ^[email protected]%[email protected]+libbsd build_system=autotools arch=linux-rocky9-sandybridge
 -   fcmvqj5                  ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   hi3htlw                      ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   ovggbvg              ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[e]  5u53ex7              ^[email protected]%[email protected]+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools arch=linux-rocky9-sandybridge
 -   3zrn7r5              ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   xtms2ih              ^[email protected]%[email protected]~obsolete_api build_system=autotools patches=4885da3 arch=linux-rocky9-sandybridge
 -   3iknvyb              ^[email protected]%[email protected]~symlinks+termlib abi=none build_system=autotools patches=7a351bc arch=linux-rocky9-sandybridge
 -   mg3yxes              ^[email protected]%[email protected]~docs+shared build_system=generic certs=mozilla arch=linux-rocky9-sandybridge
 -   vt7ehst                  ^ca-certificates-mozilla@2023-05-30%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   nrzjf6m              ^[email protected]%[email protected] build_system=autotools patches=bbf97f1 arch=linux-rocky9-sandybridge
[e]  7v4wrq2              ^[email protected]%[email protected]+column_metadata+dynamic_extensions+fts~functions+rtree build_system=autotools arch=linux-rocky9-sandybridge
 -   4cbjydt              ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[e]  y6uwknv              ^[email protected]%[email protected]~pic build_system=autotools libs=shared,static arch=linux-rocky9-sandybridge
 -   2mwxqwx          ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   gatzvv5      ^[email protected]%[email protected]+deprecated_io+gfs_phys+internal_file_nml~ipo~large_file+openmp+pic+quad_precision~shared~yaml build_system=cmake build_type=Release constants=GFS generator=make patches=2b12a6c precision=32,64 arch=linux-rocky9-sandybridge
 -   m2sv4cd          ^[email protected]%[email protected]~doc+ncurses+ownlibs build_system=generic build_type=Release arch=linux-rocky9-sandybridge
 -   hqkoxia      ^[email protected]%[email protected]~ipo+pic+w3emc build_system=cmake build_type=Release generator=make precision=4,d arch=linux-rocky9-sandybridge
[+]  od3o3px          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' +jpeg~opengl+shared build_system=generic build_type=Release arch=linux-rocky9-sandybridge
[+]  kh7rcxl              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~jpeg8~partial_decoder+pic build_system=cmake build_type=Release generator=make libs=shared,static arch=linux-rocky9-sandybridge
[+]  r3agrwk                  ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441'  build_system=autotools arch=linux-rocky9-sandybridge
 -   sahcu76          ^[email protected]%[email protected]~ipo+pic build_system=cmake build_type=Release generator=make libs=shared,static arch=linux-rocky9-sandybridge
[+]  3tvknnr      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  tj6vdlm      ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
[e]  bqcnmsh      ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
[+]  3fw4yp3      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~deprecated~ipo+openmp+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
 -   7isw2oh      ^[email protected]%[email protected]+bufrquery+fftw+hdf4 build_system=bundle arch=linux-rocky9-sandybridge
 -   erd72vn          ^[email protected]%[email protected] build_system=bundle arch=linux-rocky9-sandybridge
[e]  7sz7meg              ^[email protected]%[email protected]+man+nls+perl+subtree~svn~tcltk build_system=autotools arch=linux-rocky9-sandybridge
 -   m57aj56              ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  ospsv2c              ^[email protected]%[email protected]~libpsl~pcre~python+zlib build_system=autotools ssl=openssl arch=linux-rocky9-sandybridge
[e]  6omrzc4          ^[email protected]%[email protected]~color build_system=autotools arch=linux-rocky9-sandybridge
 -   hbkttzp          ^[email protected]%[email protected]~atomic+chrono~clanglibcpp~container~context~contract~coroutine+date_time~debug+exception~fiber+filesystem~graph~graph_parallel~icu~iostreams~json~locale~log~math~mpi+multithreaded~nowide~numpy+pic+program_options+python~random+regex+serialization+shared~signals~singlethreaded~stacktrace+system~taggedlayout+test+thread+timer~type_erasure~versionedlayout~wave build_system=generic cxxstd=17 patches=a440f96,b8569d7 visibility=hidden arch=linux-rocky9-sandybridge
 -   nwmnffs          ^[email protected]%[email protected]~ipo+python+shared+utils build_system=cmake build_type=Release generator=make test_files=none arch=linux-rocky9-sandybridge
 -   gm2ws5w          ^[email protected]%[email protected]~ipo+python build_system=cmake build_type=Release generator=make patches=3ae2f2f arch=linux-rocky9-sandybridge
 -   lzxy3lq          ^[email protected]%[email protected]~fismahigh~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   75orgwh          ^[email protected]%[email protected]+aec~fortran~ipo~memfs~netcdf~openmp+png~pthreads+shared+tools build_system=cmake build_type=Release extra_definitions=none generator=make jp2k=openjpeg arch=linux-rocky9-sandybridge
 -   xrgnrfl              ^[email protected]%[email protected]~ipo+shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   nb7dv73              ^[email protected]%[email protected]~codec~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   4ojrpjo          ^[email protected]%[email protected]+admin+aio~curl~fismahigh~ipo~jemalloc+mpi+openmp+sql~ssl+tools+unicode+xxhash build_system=cmake build_type=RelWithDebInfo compression=bzip2,lz4 generator=make linalg=eigen,lapack arch=linux-rocky9-sandybridge
 -   3tzq4ot              ^[email protected]%[email protected]+pic build_system=makefile libs=shared,static arch=linux-rocky9-sandybridge
 -   ihbwlb2          ^[email protected]%[email protected]+eigen+fckit+fftw~fismahigh~ipo+openmp+shared+tesselation+trans build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-rocky9-sandybridge
 -   jy3dgjz              ^[email protected]%[email protected]+double_precision+fftw~ipo~mkl+mpi+openmp+single_precision+transi build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-rocky9-sandybridge
 -   n7taer6                  ^[email protected]%[email protected]+fckit~ipo+mpi+openmp build_system=cmake build_type=RelWithDebInfo generator=make patches=0ca3d0d arch=linux-rocky9-sandybridge
 -   bsodpd5              ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  qzodfv6          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-rocky9-sandybridge
 -   es3fmz6          ^[email protected]%[email protected]+eckit~fismahigh~ipo+openmp+shared build_system=cmake build_type=RelWithDebInfo finalize_ddts=auto generator=make arch=linux-rocky9-sandybridge
 -   gem2pwv          ^[email protected]%[email protected]+mpi~openmp~pfft_patches+shared build_system=autotools precision=double,float arch=linux-rocky9-sandybridge
[e]  q6jig4a          ^[email protected]%[email protected]+lex~nls build_system=autotools patches=f8b85a0 arch=linux-rocky9-sandybridge
[e]  i2i4epf          ^[email protected]%[email protected] build_system=makefile arch=linux-rocky9-sandybridge
 -   6d7mopt          ^[email protected]%[email protected]~ipo~mkl build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  qvqy6gj              ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~openmp+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
[+]  z65guwl          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~cmake_export_package_registry~compat_header~cuda_tests~examples~ipo~legacy_headers~static_analysis_demos~tests build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   nugbxue          ^[email protected]%[email protected]+external-xdr~fortran~java~netcdf+pic~shared~szip build_system=autotools patches=49733dd,5434f29,ce75518,d54592d,f7d67e8 arch=linux-rocky9-sandybridge
 -   t6a3ahj              ^[email protected]%[email protected]+gssapi build_system=autotools arch=linux-rocky9-sandybridge
 -   rbrcmlm                  ^[email protected]%[email protected]+shared build_system=autotools arch=linux-rocky9-sandybridge
[e]  s5hpo7w                      ^[email protected]%[email protected] build_system=autotools patches=440b954 arch=linux-rocky9-sandybridge
[+]  7erluah          ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  4kah4ge          ^[email protected]%[email protected] build_system=autotools arch=linux-rocky9-sandybridge
 -   th7muby          ^[email protected]%[email protected]~doc+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   kjhtwzj          ^[email protected]%[email protected]~ipo+multiple_headers build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   smtfvl7          ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   lxuhjuu          ^[email protected]%[email protected]~fortran~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   sblvofb          ^[email protected]%[email protected]~bignuma~consistent_fpcsr+dynamic_dispatch+fortran~ilp64+locking+noavx512+pic+shared build_system=makefile symbol_suffix=none threads=none arch=linux-rocky9-sandybridge
 -   xkoapwt          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   y63aze5              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   mpwbulg              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   k6bxwbn                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ccyylrz              ^[email protected]%[email protected] build_system=python_pip patches=6701e0e arch=linux-rocky9-sandybridge
 -   k7s7snf          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ij6kj7p          ^[email protected]%[email protected]~mpi build_system=python_pip arch=linux-rocky9-sandybridge
 -   npnjpbw              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   lpo2lbz                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   vi2d4vm          ^[email protected]%[email protected]~mpi build_system=python_pip patches=255b5ae arch=linux-rocky9-sandybridge
 -   voy7qeo              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   jnjuxii          ^[email protected]%[email protected]+excel+performance build_system=python_pip arch=linux-rocky9-sandybridge
 -   njnc4xo              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   i5gzhfh                  ^[email protected]%[email protected]+toml build_system=python_pip arch=linux-rocky9-sandybridge
 -   2kkldn4              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   wimukqq              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   tzqbaeo                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   5ppxjmw              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   rjkl5lp              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ylingqp              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   jfzwtyg              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   p6p3do5              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   3dffpvc          ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=ninja arch=linux-rocky9-sandybridge
 -   bxbpqlz              ^[email protected]%[email protected]+re2c build_system=generic arch=linux-rocky9-sandybridge
 -   7662r2b                  ^[email protected]%[email protected] build_system=generic arch=linux-rocky9-sandybridge
 -   kwxxmpl          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ihuyeji          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   4d6z77t          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   zk7h5jy              ^[email protected]%[email protected]+toml build_system=python_pip arch=linux-rocky9-sandybridge
 -   sicdixa                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   tsl6lq4                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ausmxm6              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   gsh7lto          ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   4hdgkma              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   f4mo5tz                  ^[email protected]%[email protected] build_system=python_pip patches=0f0b1bd arch=linux-rocky9-sandybridge
 -   dy6k64t                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ca4xbnt              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   6heeoam                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   rnhtclo                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   473z32v                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   pjwlhr3          ^[email protected]%[email protected]~io~parallel build_system=python_pip arch=linux-rocky9-sandybridge
 -   2iu4ywb              ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   vgocl3x                  ^[email protected]%[email protected] build_system=python_pip arch=linux-rocky9-sandybridge
 -   ysbcsww          ^[email protected]%[email protected]+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   lkmsrzf      ^[email protected]%[email protected]~debug+extdata2g~f2py+fargparse~ipo+pflogger~pfunit~shared build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   pmkigkn          ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   g2in334          ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[e]  alpjh3g              ^[email protected]%[email protected]+sigsegv build_system=autotools patches=9dc5fbd,bfdffa7 arch=linux-rocky9-sandybridge
 -   fo4wudv          ^[email protected]%[email protected]~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   luzpgcs          ^[email protected]%[email protected]~cxx+fortran+hl~ipo~java~map+mpi+shared~subfiling~szip+threadsafe+tools api=default build_system=cmake build_type=Release generator=make patches=82088c8 arch=linux-rocky9-sandybridge
[e]  bayvb6z          ^[email protected]%[email protected]~cpanm~opcode+open+shared+threads build_system=generic arch=linux-rocky9-sandybridge
 -   g4qqh6v          ^[email protected]%[email protected]~ipo+mpi build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   6m2yvlo              ^[email protected]%[email protected]~fismahigh~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
 -   kzyhbub      ^[email protected]%[email protected]~doc build_system=autotools arch=linux-rocky9-sandybridge
 -   l575lx7          ^[email protected]%[email protected]+cxx~java~pic~python build_system=autotools patches=33897ad arch=linux-rocky9-sandybridge
 -   vlvhpg3          ^[email protected]%[email protected]~external-cblas+pic+shared build_system=autotools arch=linux-rocky9-sandybridge
 -   2ybu6h2      ^[email protected]%[email protected]~ipo+mpi build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  ypvu5pg      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~pfunit build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  v62lfca      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo~pfunit build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge
[+]  bkeibpb      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~bufr+extradeps~ipo+pic~shared build_system=cmake build_type=Release generator=make precision=4,8,d arch=linux-rocky9-sandybridge
[+]  lq3agql      ^[email protected]%[email protected] cflags='-diag-disable=10441' cxxflags='-diag-disable=10441' fflags='-diag-disable=10441' ~ipo build_system=cmake build_type=Release generator=make arch=linux-rocky9-sandybridge

@climbfuji
Copy link
Collaborator

I still do not understand. If you create one environment with a separate name = in a separate directory as above, activate it, concretize and install, then deactivate and do the same with the other environment, then they are totally unrelated to each other. How would the gcc env know that there even is a package built by gcc? The concretizer has no information about the other environment.

Are you adding a binary cache to both environments before concretizing? The concretizer will try to reuse dependencies from the binary cache when it thinks it can.

@rjdave
Copy link
Author

rjdave commented Nov 22, 2024

I don't know how to add binary cache to environments so if that happened, I don't know how.

I started from scratch after discovering that the removal of the --modulesys option for environment creation causes my path/to/env/common/modules.yaml to only contain configuration for tcl instead of lmod. This time I modified configs/sites/tier2/linux.default/modules.yaml to use lmod instead of tcl. That cleared up the core compiler issue mentioned in #1360 and also removed the short hash from most of the module names. I will clarify most in #1360.

I don't think this change was the cause of the issue detailed here, but since I can no longer reproduce this issue I am closing it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something is not working
Projects
None yet
Development

No branches or pull requests

2 participants