forked from davea42/libdwarf-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
231 lines (193 loc) · 6.14 KB
/
meson.build
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
project('libdwarf', ['c','cpp'],
version: '0.4.2',
default_options : ['buildtype=debugoptimized', 'warning_level=3', 'werror=true'],
meson_version : '>=0.53'
)
v_arr = meson.project_version().split('.')
v_maj = v_arr[0]
v_min = v_arr[1]
v_mic = v_arr[2]
# install paths
dir_prefix = get_option('prefix')
dir_include = join_paths(dir_prefix, get_option('includedir'))
dir_pkginclude = join_paths(dir_include, meson.project_name())
dir_bin = join_paths(dir_prefix, get_option('bindir'))
dir_lib = join_paths(dir_prefix, get_option('libdir'))
dir_data = join_paths(dir_prefix, get_option('datadir'))
dir_pkgdata = join_paths(dir_data, meson.project_name())
dir_locale = join_paths(dir_prefix, get_option('localedir'))
# host
windows = import('windows')
host_os = host_machine.system()
windows = ['windows', 'cygwin']
#bsd for meson 0.46 and 0.47
bsd = ['bsd', 'freebsd', 'dragonfly', 'netbsd', 'openbsd']
linux = ['linux']
osx = ['darwin']
sun = ['sunos']
sys_linux = linux.contains(host_machine.system())
sys_bsd = bsd.contains(host_machine.system())
sys_windows = windows.contains(host_machine.system())
sys_osx = osx.contains(host_machine.system())
sys_sun = sun.contains(host_machine.system())
# compiler
cc = meson.get_compiler('c')
cpp = meson.get_compiler('cpp')
dev_cflags = []
dev_cppflags = []
dev_cflags_try = [
'-Wpointer-arith',
'-Wmissing-declarations',
'-Wstrict-prototypes',
'-Wcomment',
'-Wformat',
'-Wuninitialized',
'-Wshadow',
'-Wno-long-long',
'-Wfloat-compare',
'-Wsign-compare',
'-Wno-missing-field-initializers',
'-fno-omit-frame-pointer'
]
if sys_windows
if cc.get_id() != 'msvc'
dev_cflags_try += '-Wno-pedantic-ms-format'
endif
else
dev_cflags_try += '-fvisibility=hidden'
endif
foreach cf: dev_cflags_try
if cc.has_argument(cf)
dev_cflags += cf
endif
if get_option('dwarfgen') == true
if cpp.has_argument(cf)
dev_cppflags += cf
endif
endif
endforeach
libdwarf_args = [ '-D__USE_MINGW_ANSI_STDIO=0' ]
if cc.get_id() == 'msvc'
libdwarf_args += [ '-D_CRT_NONSTDC_NO_WARNINGS' ]
endif
config_dir = [include_directories('.')]
# configuration
# sys/stat.h is for dwarfgen.
header_checks = [
'fcntl.h',
'inttypes.h',
'malloc.h',
'stdint.h',
'sys/stat.h',
]
if sys_windows == false
header_checks += 'unistd.h'
endif
config_h = configuration_data()
config_h.set_quoted('PACKAGE_NAME', meson.project_name())
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h.set_quoted('PACKAGE_BIN_DIR', dir_bin)
config_h.set_quoted('PACKAGE_LIB_DIR', dir_lib)
config_h.set_quoted('PACKAGE_DATA_DIR', dir_data)
config_h.set_quoted('LOCALEDIR', dir_locale)
if host_machine.endian() == 'big'
config_h.set10('WORDS_BIGENDIAN', true)
endif
if cc.has_function_attribute('unused') == true
config_h.set10('HAVE_UNUSED_ATTRIBUTE', true)
endif
foreach header : header_checks
if cc.has_header(header)
config_h.set10('HAVE_'+header.underscorify().to_upper(), true)
endif
endforeach
foreach t : [ 'uint64_t', 'uintptr_t', 'intptr_t' ]
if not cc.has_type(t, prefix: '#include <stdint.h>')
error('Sanity check failed: type @0@ not provided via stdint.h'.format(t))
endif
endforeach
have_libelf = false
if get_option('libelf') == true
header_elf_checks = [ 'libelf.h', 'libelf/libelf.h' ]
foreach header : header_elf_checks
if cc.has_header(header)
config_h.set10('HAVE_'+header.underscorify().to_upper(), true)
have_libelf = true
endif
endforeach
if have_libelf == true
if cc.has_header('elf.h')
config_h.set10('HAVE_ELF_H', true)
if get_option('dwarfgen') == true
config_h.set10('DWARF_WITH_LIBELF', true)
endif
endif
endif
endif
subdir('src/lib/libdwarf')
subdir('src/bin/dwarfdump')
have_libdwarfp = false
if have_libelf == true and get_option('dwarfgen') == true
subdir('src/lib/libdwarfp')
subdir('src/bin/dwarfgen')
have_libdwarfp = true
endif
subdir('src/bin/attr_form')
subdir('src/bin/buildopstab')
subdir('src/bin/builduritable')
subdir('src/bin/gennames')
subdir('src/bin/tag_attr')
subdir('src/bin/tag_tree')
if get_option('dwarfexample') == true
subdir('src/bin/dwarfexample')
endif
subdir('doc')
subdir('test')
# Use config_h after all subdirs have set values
configure_file(output : 'config.h', configuration : config_h)
# pkg-config files
pkgconf = configuration_data()
pkgconf.set('prefix', get_option('prefix'))
pkgconf.set('exec_prefix', '${prefix}')
pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
pkgconf.set('pkgincludedir', '${prefix}/@0@'.format(get_option('includedir')) + '/libdwarf')
pkgconf.set('VMAJ', v_maj)
pkgconf.set('PACKAGE_VERSION', meson.project_version())
pkgconf.set('requirements_libdwarf_pc', 'zlib')
pkgconf.set('requirements_libdwarf_libs', '')
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
configure_file(
input : join_paths(meson.source_root(), 'libdwarf.pc.in'),
output : 'libdwarf.pc',
configuration : pkgconf,
install_dir : pkg_install_dir
)
# output
libdwarf_output = 'always (zlib: ' + (zlib_deps.found() ? 'yes' : 'no') + ')'
libdwarfp_output = (have_libdwarfp ? 'yes' : 'no')
if have_libdwarfp
libdwarfp_output += ' (elf64_getehdr: ' + (have_getehdr ? 'yes' : 'no')
libdwarfp_output += ', elf64_getshdr: ' + (have_getshdr ? 'yes' : 'no') + ')'
endif
summary({'OS': host_os,
'BuildOS-BigEndian': host_machine.endian() == 'big' ? 'yes' : 'no',
'libelf support': have_libelf ? 'yes' : 'no',
'libdwarf': libdwarf_output,
'dwarfdump': 'always',
'libdwarfp': libdwarfp_output,
'dwarfgen': have_libdwarfp ? 'yes' : 'no',
'dwarfexample': get_option('dwarfexample') ? 'yes' : 'no',
'documentation': have_doc,
}, section: 'Configuration Options Summary:')
summary({'prefix': dir_prefix,
'bindir': dir_bin,
'libdir': dir_lib,
'incdir': dir_include,
'pkgincdir': dir_pkginclude,
'datadir': dir_data,
'pkgdatadir': dir_pkgdata,
}, section: 'Directories:')
summary({'compilation': 'ninja',
'installation': 'ninja install',
}, section: 'Compilation')