-
Notifications
You must be signed in to change notification settings - Fork 0
/
find_clhep.py
121 lines (103 loc) · 2.9 KB
/
find_clhep.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
# -*- python -*-
# stdlib imports ---
import os
import os.path as osp
# waf imports ---
import waflib.Utils
import waflib.Logs as msg
from waflib.Configure import conf
#
_heptooldir = osp.dirname(osp.abspath(__file__))
def options(opt):
opt.load('hwaf-base', tooldir=_heptooldir)
opt.add_option(
'--with-clhep',
default=None,
help="Look for CLHEP at the given path")
return
def configure(conf):
conf.load('hwaf-base', tooldir=_heptooldir)
return
@conf
def find_clhep(ctx, **kwargs):
if not ctx.env.HWAF_FOUND_C_COMPILER:
ctx.fatal('load a C compiler first')
pass
if not ctx.env.HWAF_FOUND_CXX_COMPILER:
ctx.fatal('load a C++ compiler first')
pass
# find CLHEP
clhep_cfg = "clhep-config"
path_list = waflib.Utils.to_list(kwargs.get('path_list', []))
if getattr(ctx.options, 'with_clhep', None):
topdir = ctx.options.with_clhep
topdir = ctx.hwaf_subst_vars(topdir)
clhep_cfg = osp.abspath(osp.join(topdir, "bin", "clhep-config"))
path_list.append(osp.join(topdir, "bin"))
pass
kwargs['path_list']=path_list
ctx.find_program(
clhep_cfg,
var='CLHEP-CONFIG',
**kwargs)
clhep_cfg = ctx.env['CLHEP-CONFIG']
ctx.check_with(
ctx.check_cfg,
"clhep",
path=clhep_cfg,
package="",
uselib_store="CLHEP",
args='--include --libs --ldflags',
**kwargs)
clhep_libs = '''\
CLHEP-Cast
CLHEP-Evaluator
CLHEP-Exceptions
CLHEP-GenericFunctions
CLHEP-Geometry
CLHEP-Matrix
CLHEP-Random
CLHEP-RandomObjects
CLHEP-RefCount
CLHEP-Vector
'''
for lib in clhep_libs.split():
libname = lib.strip()
for n in ('INCLUDES',
'LIBPATH',
'LINKFLAGS'):
k = '%s_CLHEP'%n
ctx.env[k] = [
# sanitize paths
p.replace("'", "").replace('"', '')
for p in ctx.env[k]
]
ctx.env['%s_%s'%(n,libname)] = ctx.env[k][:]
# massage -lCLHEP-$(version)
# into -lCLHEP-$(sublib)-$(version)
ctx.env['LIB_%s'%libname] = [l.replace('CLHEP',libname)
for l in ctx.env['LIB_CLHEP']]
pass
version = ctx.check_cxx(
msg="Checking clhep version",
okmsg="ok",
fragment='''\
#include "CLHEP/ClhepVersion.h"
#include <iostream>
int main(int argc, char* argv[]) {
std::cout << CLHEP::Version::String();
return 0;
}
''',
use="CLHEP",
define_name = "HWAF_CLHEP_VERSION",
define_ret = True,
execute = True,
mandatory=True,
)
ctx.start_msg("clhep version")
ctx.end_msg(version)
ctx.env.CLHEP_VERSION = version
ctx.env.HWAF_FOUND_CLHEP = 1
return
## EOF ##