diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2024-04-03 14:18:47 +0200 |
---|---|---|
committer | Harmen Stoppels <harmenstoppels@gmail.com> | 2024-04-22 15:18:06 +0200 |
commit | 34146c197a6addcfda45c54d72d0ddb6871d392c (patch) | |
tree | 680e74eb55a2224c42a565dd19539ae1d41b5b13 /var/spack/repos/builtin/packages/intel-llvm/package.py | |
parent | 209a3bf3026f9d75262dd1e92c04008876b4fbae (diff) | |
download | spack-34146c197a6addcfda45c54d72d0ddb6871d392c.tar.gz spack-34146c197a6addcfda45c54d72d0ddb6871d392c.tar.bz2 spack-34146c197a6addcfda45c54d72d0ddb6871d392c.tar.xz spack-34146c197a6addcfda45c54d72d0ddb6871d392c.zip |
Add libc dependency to compiled packages and runtime deps
This commit differentiate linux from other platforms by
using libc compatibility as a criterion for deciding
which buildcaches / binaries can be reused. Other
platforms still use OS compatibility.
On linux a libc is injected by all compilers as an implicit
external, and the compatibility criterion is that a libc is
compatible with all other libcs with the same name and a
version that is lesser or equal.
Some concretization unit tests use libc when run on linux.
Diffstat (limited to 'var/spack/repos/builtin/packages/intel-llvm/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/intel-llvm/package.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/intel-llvm/package.py b/var/spack/repos/builtin/packages/intel-llvm/package.py index 630e2df996..ea9dd94650 100644 --- a/var/spack/repos/builtin/packages/intel-llvm/package.py +++ b/var/spack/repos/builtin/packages/intel-llvm/package.py @@ -14,8 +14,6 @@ class IntelLlvm(CMakePackage): homepage = "https://github.com/intel/llvm" git = "https://github.com/intel/llvm.git" - family = "compiler" - license("Apache-2.0") version("sycl", branch="sycl") |