diff options
author | Geoffrey Malcolm Oxberry <goxberry@gmail.com> | 2018-07-29 03:27:01 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-08-06 22:01:50 -0700 |
commit | 853a3f14c7d4341515e158a9ebc7da23c6828971 (patch) | |
tree | cb13b63f39a1bf373a8af47e29eaa9b5fabd02e8 | |
parent | ea6918c1bf42254ed22ec060b0381272e5cb564d (diff) | |
download | spack-853a3f14c7d4341515e158a9ebc7da23c6828971.tar.gz spack-853a3f14c7d4341515e158a9ebc7da23c6828971.tar.bz2 spack-853a3f14c7d4341515e158a9ebc7da23c6828971.tar.xz spack-853a3f14c7d4341515e158a9ebc7da23c6828971.zip |
Make libunwind provider of unwind virtual pkg
This commit begins addressing the ideas discussed in #8823. The
libunwind library now provides the "unwind" virtual package, which
represents the "libunwind base API" common to LLVM libunwind, Apple's
LLVM libunwind, and non-GNU libunwind.
-rw-r--r-- | var/spack/repos/builtin/packages/libunwind/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libunwind/package.py b/var/spack/repos/builtin/packages/libunwind/package.py index ed0c824d1e..3c5c60aa21 100644 --- a/var/spack/repos/builtin/packages/libunwind/package.py +++ b/var/spack/repos/builtin/packages/libunwind/package.py @@ -36,3 +36,5 @@ class Libunwind(AutotoolsPackage): version('1.2.1', '06ba9e60d92fd6f55cd9dadb084df19e') version('1.1', 'fb4ea2f6fbbe45bf032cd36e586883ce') + + provides('unwind') |