Py py spy add libunwind 1 (#22827)

* Add missing libunwarp dependency

py-py-spy fails to build with:
  = note: /bin/ld: cannot find -lunwind
          /bin/ld: cannot find -lunwind-ptrace
          /bin/ld: cannot find -lunwind-x86_64
          collect2: error: ld returned 1 exit status

* Correct libunwind instead of libunwarp

* Change libunwind dependency to unwind
This commit is contained in:
Evili del Rio 2021-04-07 18:10:08 +02:00 committed by GitHub
parent cfbb4abb79
commit 6c16f5c5d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,3 +17,4 @@ class PyPySpy(PythonPackage):
# Need to figure out how to manage these with Spack once we have a
# CargoPackage base class.
depends_on('rust', type='build')
depends_on('unwind')