Skip to content
Snippets Groups Projects
Commit e64c0f4e authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Fix Boost finding in Dyninst 8.2.1.

parent 1857b773
Branches
Tags
No related merge requests found
......@@ -31,9 +31,8 @@ class Dyninst(Package):
url = "http://www.dyninst.org/sites/default/files/downloads/dyninst/8.1.2/DyninstAPI-8.1.2.tgz"
list_url = "http://www.dyninst.org/downloads/dyninst-8.x"
# Doesn't build right with boost@1.55.0
# version('8.2.1', 'abf60b7faabe7a2e4b54395757be39c7',
# url="http://www.paradyn.org/release8.2/DyninstAPI-8.2.1.tgz")
version('8.2.1', 'abf60b7faabe7a2e4b54395757be39c7',
url="http://www.paradyn.org/release8.2/DyninstAPI-8.2.1.tgz")
version('8.1.2', 'bf03b33375afa66fe0efa46ce3f4b17a',
url="http://www.paradyn.org/release8.1.2/DyninstAPI-8.1.2.tgz")
version('8.1.1', 'd1a04e995b7aa70960cd1d1fac8bd6ac',
......@@ -50,6 +49,9 @@ def install(self, spec, prefix):
with working_dir('spack-build', create=True):
cmake('..',
'-DBoost_INCLUDE_DIR=%s' % spec['boost'].prefix.include,
'-DBoost_LIBRARY_DIR=%s' % spec['boost'].prefix.lib,
'-DBoost_NO_SYSTEM_PATHS=TRUE',
'-DLIBELF_INCLUDE_DIR=%s' % join_path(libelf.include, 'libelf'),
'-DLIBELF_LIBRARIES=%s' % join_path(libelf.lib, 'libelf.so'),
'-DLIBDWARF_INCLUDE_DIR=%s' % libdwarf.include,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment