Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
25b2f7b1
Commit
25b2f7b1
authored
8 years ago
by
Gregory L. Lee
Browse files
Options
Downloads
Patches
Plain Diff
put older versions back + version-specific dwarfdump dir
parent
30e8e77f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/libdwarf/package.py
+8
-3
8 additions, 3 deletions
var/spack/repos/builtin/packages/libdwarf/package.py
with
8 additions
and
3 deletions
var/spack/repos/builtin/packages/libdwarf/package.py
+
8
−
3
View file @
25b2f7b1
...
...
@@ -23,7 +23,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from
spack
import
*
import
os
# Only build certain parts of dwarf because the other ones break.
dwarf_dirs
=
[
'
libdwarf
'
,
'
dwarfdump2
'
]
...
...
@@ -45,7 +44,9 @@ class Libdwarf(Package):
list_url
=
homepage
version
(
'
20160507
'
,
'
ae32d6f9ece5daf05e2d4b14822ea811
'
)
version
(
'
20130729
'
,
'
4cc5e48693f7b93b7aa0261e63c0e21d
'
)
version
(
'
20130207
'
,
'
64b42692e947d5180e162e46c689dfbf
'
)
version
(
'
20130126
'
,
'
ded74a5e90edb5a12aac3c29d260c5db
'
)
depends_on
(
"
libelf
"
)
parallel
=
False
...
...
@@ -67,7 +68,11 @@ def install(self, spec, prefix):
install
(
'
libdwarf.h
'
,
prefix
.
include
)
install
(
'
dwarf.h
'
,
prefix
.
include
)
with
working_dir
(
'
dwarfdump
'
):
if
spec
.
satisfies
(
'
@20130126:20130729
'
):
dwarfdump_dir
=
'
dwarfdump2
'
else
:
dwarfdump_dir
=
'
dwarfdump
'
with
working_dir
(
dwarfdump_dir
):
configure
(
"
--prefix=
"
+
prefix
)
# This makefile has strings of copy commands that
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment