1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
import os
import sys
import spack.build_systems.cmake
import spack.build_systems.generic
from spack.package import *
# Only build certain parts of dwarf because the other ones break.
dwarf_dirs = ["libdwarf", "dwarfdump2"]
class Libdwarf(CMakePackage, Package):
"""The DWARF Debugging Information Format is of interest to
programmers working on compilers and debuggers (and any one
interested in reading or writing DWARF information). It was
developed by a committee (known as the PLSIG at the time)
starting around 1991. Starting around 1991 SGI developed the
libdwarf and dwarfdump tools for internal use and as part of
SGI IRIX developer tools. Since that time dwarfdump and
libdwarf have been shipped (as an executable and archive
respectively, not source) with every release of the SGI
MIPS/IRIX C compiler."""
homepage = "https://www.prevanders.net/dwarf.html"
url = "https://www.prevanders.net/libdwarf-0.10.1.tar.xz"
list_url = homepage
license("LGPL-2.1-only")
version("0.11.0", sha256="846071fb220ac1952f9f15ebbac6c7831ef50d0369b772c07a8a8139a42e07d2")
version("0.10.1", sha256="b511a2dc78b98786064889deaa2c1bc48a0c70115c187900dd838474ded1cc19")
with default_args(deprecated=True):
version(
"20180129", sha256="8bd91b57064b0c14ade5a009d3a1ce819f1b6ec0e189fc876eb8f42a8720d8a6"
)
version(
"20160507", sha256="12ae39376e3915bf8fa92555989f3ad5f2f4f332b590a628541ce68987b337af"
)
version(
"20130729", sha256="b6455d8616baf2883e2af91f006d6cbd583128fdfff46e3d1fae460bc223bb7b"
)
version(
"20130207", sha256="5cb81459f0a1f6a2a10ef4635faddc2fa5e1a9e36901018c017759e491e708b8"
)
version(
"20130126", sha256="c23c847935f8612f4fcdcfa0b3311f1553dcbd95bb683d3d5e030440201192fe"
)
build_system(
conditional("generic", when="@20130126:20180130"),
conditional("cmake", when="@0:"),
default="generic",
)
with when("@:20130126"):
variant("shared", default=True, description="Build shared libs")
variant("examples", default=False, description="Build examples")
variant("pic", default=True, description="Build with position independent code")
variant("dwarfdump", default=True, description="Build dwarfdump")
variant("dwarfgen", default=False, description="Build dwarfgen")
variant(
"decompression",
default=True,
description="Enables support for compressed debug sections",
)
conflicts("+shared ~pic")
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("cmake@3.5:", type="build", when="@:20130126")
depends_on("gmake", type="build", when="@20130126:")
depends_on("elfutils@0.163", when="@20160507", type="link")
depends_on("elf", when="@20130126:", type="link")
depends_on("zlib-api", when="@20130126:", type="link")
with when("@:20130126 +decompression"):
depends_on("zlib-api", type="link")
depends_on("zstd", type="link")
parallel = False
def url_for_version(self, version):
if version < Version("20130126"):
return super().url_for_version(version)
return f"https://www.prevanders.net/libdwarf-{version}.tar.gz"
class CMakeBuilder(spack.build_systems.cmake.CMakeBuilder):
def cmake_args(self):
spec = self.spec
define = self.define
from_variant = self.define_from_variant
args = [
from_variant("BUILD_SHARED", "shared"),
from_variant("BUILD_DWARFEXAMPLE", "examples"),
from_variant("PIC_ALWAYS", "pic"),
from_variant("BUILD_DWARFDUMP", "dwarfdump"),
from_variant("BUILD_DWARFGEN", "dwarfgen"),
from_variant("ENABLE_DECOMPRESSION", "decompression"),
define("BUILD_NON_SHARED", spec.satisfies("~shared")),
define("DO_TESTING", self.pkg.run_tests),
]
return args
class GenericBuilder(spack.build_systems.generic.GenericBuilder):
def patch(self):
filter_file(r"^typedef struct Elf Elf;$", "", "libdwarf/libdwarf.h.in")
def install(self, pkg, spec, prefix):
# dwarf build does not set arguments for ar properly
make.add_default_arg("ARFLAGS=rcs")
# Dwarf doesn't provide an install, so we have to do it.
mkdirp(prefix.bin, prefix.include, prefix.lib, prefix.man.man1)
with working_dir("libdwarf"):
extra_config_args = []
# this is to prevent picking up system /usr/include/libelf.h
if spec.satisfies("^libelf"):
libelf_inc_dir = join_path(spec["libelf"].prefix, "include/libelf")
extra_config_args.append(
"CFLAGS=-I{0} -Wl,-L{1} -Wl,-lelf".format(
libelf_inc_dir, spec["libelf"].prefix.lib
)
)
configure("--prefix=" + prefix, "--enable-shared", *extra_config_args)
filter_file(
r"^dwfzlib\s*=\s*-lz",
"dwfzlib=-L{0} -lz".format(self.spec["zlib-api"].prefix.lib),
"Makefile",
)
make()
libdwarf_name = "libdwarf.{0}".format(dso_suffix)
libdwarf1_name = "libdwarf.{0}".format(dso_suffix) + ".1"
install("libdwarf.a", prefix.lib)
install("libdwarf.so", join_path(prefix.lib, libdwarf1_name))
if spec.satisfies("@20160507:"):
with working_dir(prefix.lib):
os.symlink(libdwarf1_name, libdwarf_name)
install("libdwarf.h", prefix.include)
install("dwarf.h", prefix.include)
# It seems like fix_darwin_install_name can't be used
# here directly; the install name of the library in
# the stage directory must be fixed in order for dyld
# to locate it on Darwin when spack builds dwarfdump
if sys.platform == "darwin":
install_name_tool = which("install_name_tool")
install_name_tool("-id", join_path("..", "libdwarf", "libdwarf.so"), "libdwarf.so")
if spec.satisfies("@20130126:20130729"):
dwarfdump_dir = "dwarfdump2"
else:
dwarfdump_dir = "dwarfdump"
with working_dir(dwarfdump_dir):
configure("--prefix=" + prefix)
filter_file(
r"^dwfzlib\s*=\s*-lz",
"dwfzlib=-L{0} -lz".format(self.spec["zlib-api"].prefix.lib),
"Makefile",
)
# This makefile has strings of copy commands that
# cause a race in parallel
make(parallel=False)
install("dwarfdump", prefix.bin)
install("dwarfdump.conf", prefix.lib)
install("dwarfdump.1", prefix.man.man1)
@run_after("install")
def darwin_fix(self):
if sys.platform == "darwin":
fix_darwin_install_name(self.prefix.lib)
|