forked from WireCell/wire-cell-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric.py
163 lines (132 loc) · 5.87 KB
/
generic.py
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
#!/usr/bin/env python
'''
This is NOT a waf tool but generic functions to be called from a waf
tool, in particular by wcb.py.
There's probably a wafier way to do this.
The interpretation of options are very specific so don't change them
unless you really know all the use cases. The rules are:
If package is optional:
- omitting all --with-NAME* options will omit use the package
- explicitly using --with-NAME=false (or "no" or "off") will omit
use of the package.
If package is mandatory:
- omitting all --with-NAME* options will use pkg-config to find
the package.
- explicitly using --with-NAME=false (or "no" or "off") will
assert.
In either case:
- explicitly using --with-NAME=true (or "yes" or "on") will use
pkg-config to find the package.
- using --with-NAME* with a path will attempt to locate the
package without using pkg-config
Note, actually, pgk-config fails often to do its job. Best to always
use explicit --with-NAME=[<bool>|<dir>].
'''
import sys
import os.path as osp
from waflib.Logs import debug
def _options(opt, name, incs=None, libs=None):
lower = name.lower()
opt = opt.add_option_group('%s Options' % name)
opt.add_option('--with-%s'%lower, type='string', default=None,
help="give %s installation location" % name)
if incs is None or len(incs):
opt.add_option('--with-%s-include'%lower, type='string',
help="give %s include installation location"%name)
if libs is None or len(libs):
opt.add_option('--with-%s-lib'%lower, type='string',
help="give %s lib installation location"%name)
opt.add_option('--with-%s-libs'%lower, type='string',
help="list %s link libraries"%name)
return
def _configure(ctx, name, incs=(), libs=(), bins=(), pcname=None, mandatory=True, extuses=()):
lower = name.lower()
UPPER = name.upper()
extuses = list(extuses)
instdir = getattr(ctx.options, 'with_'+lower, None)
incdir = getattr(ctx.options, 'with_%s_include'%lower, None)
libdir = getattr(ctx.options, 'with_%s_lib'%lower, None)
bindir = getattr(ctx.options, 'with_%s_bin'%lower, None)
if libs:
maybe = getattr(ctx.options, 'with_%s_libs'%lower, None)
if maybe:
libs = [s.strip() for s in maybe.split(",") if s.strip()]
debug ("CONFIGURE", name, instdir, incdir, libdir, mandatory, extuses)
if mandatory:
if instdir:
if instdir.lower() in ['no','off','false']:
raise ValueError(f'{name} is mandatory, "{instdir}" not allowed')
else: # optional
if instdir and instdir.lower() in ['no','off','false']:
debug ("%s: skipping non mandatory %s, use --with-%s=[yes|<dir>] to force" % (lower, name, lower))
return
# rely on package config
no_dirs = not any([instdir,incdir,libdir,bindir])
have_instdir = (instdir and instdir.lower() in ['yes','on','true'])
have_pcname = pcname is not None
if have_pcname and (no_dirs or have_instdir):
ctx.start_msg('Checking for %s in PKG_CONFIG_PATH' % name)
args = "--cflags"
if libs: # things like eigen may not have libs
args += " --libs"
ctx.check_cfg(package=pcname, uselib_store=UPPER,
args=args, mandatory=mandatory)
if 'HAVE_'+UPPER in ctx.env:
ctx.end_msg("located by pkg-config")
else:
ctx.end_msg("missing from pkg-config")
return
else: # do manual setting
if incs:
if not incdir and instdir:
incdir = osp.join(instdir, 'include')
if incdir:
setattr(ctx.env, 'INCLUDES_'+UPPER, [incdir])
if libs:
if not libdir and instdir:
libdir = osp.join(instdir, 'lib')
if libdir:
setattr(ctx.env, 'LIBPATH_'+UPPER, [libdir])
if bins:
if not bindir and instdir:
bindir = osp.join(instdir, 'bin')
if libdir:
setattr(ctx.env, 'PATH_'+UPPER, [bindir])
# now check, this does some extra work in the caseof pkg-config
if libs:
ctx.start_msg("Location for %s libs" % (name,))
for tryl in libs:
ctx.check_cxx(lib=tryl, define_name='HAVE_'+UPPER+'_LIB',
use=[UPPER] + extuses, uselib_store=UPPER, mandatory=mandatory)
ctx.end_msg(str(getattr(ctx.env, 'LIBPATH_' + UPPER, None)))
ctx.start_msg("Libs for %s" % UPPER)
have_libs = getattr(ctx.env, 'LIB_' + UPPER, None)
ctx.end_msg(str(have_libs))
if ctx.is_defined('HAVE_'+UPPER+'_LIB'):
ctx.env['HAVE_'+UPPER] = 1
debug('%s: HAVE %s libs' % (lower, UPPER))
if pcname:
ctx.env.REQUIRES += [pcname]
else:
debug('%s: NO %s libs' % (lower, UPPER))
if incs:
ctx.start_msg("Location for %s headers" % name)
for tryh in incs:
ctx.check_cxx(header_name=tryh, define_name='HAVE_'+UPPER+'_INC',
use=[UPPER] + extuses, uselib_store=UPPER, mandatory=mandatory)
have_incs = getattr(ctx.env, 'INCLUDES_' + UPPER, None)
ctx.end_msg(str(have_incs))
if ctx.is_defined('HAVE_'+UPPER+'_INC'):
ctx.env['HAVE_'+UPPER] = 1
debug('%s: HAVE %s includes' % (lower, UPPER))
if pcname:
ctx.env.REQUIRES += [pcname]
else:
debug('%s: NO %s includes' % (lower, UPPER))
if bins:
ctx.start_msg("Bins for %s" % name)
found_bins = list()
for tryb in bins:
ctx.find_program(tryb, var=tryb.upper(), mandatory=mandatory)
found_bins += ctx.env[tryb.upper()]
ctx.end_msg(str(found_bins))