blob: dab6949aa8f6b49c274c6ea04f2d0d15cdd7cdb9 [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# partially based on boost.py written by Gernot Vormayr
2# written by Ruediger Sonderfeld <ruediger@c-plusplus.de>, 2008
3# modified by Bjoern Michaelsen, 2008
4# modified by Luca Fossati, 2008
5# rewritten for waf 1.5.1, Thomas Nagy, 2008
6# rewritten for waf 1.6.2, Sylvain Rouquette, 2011
7
8'''
9
10This is an extra tool, not bundled with the default waf binary.
11To add the boost tool to the waf file:
12$ ./waf-light --tools=compat15,boost
13 or, if you have waf >= 1.6.2
14$ ./waf update --files=boost
15
16When using this tool, the wscript will look like:
17
18 def options(opt):
19 opt.load('compiler_cxx boost')
20
21 def configure(conf):
22 conf.load('compiler_cxx boost')
23 conf.check_boost(lib='system filesystem')
24
25 def build(bld):
26 bld(source='main.cpp', target='app', use='BOOST')
27
28Options are generated, in order to specify the location of boost includes/libraries.
29The `check_boost` configuration function allows to specify the used boost libraries.
Junxiao Shi7d054272016-08-04 17:00:41 +000030It can also provide default arguments to the --boost-mt command-line arguments.
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080031Everything will be packaged together in a BOOST component that you can use.
32
33When using MSVC, a lot of compilation flags need to match your BOOST build configuration:
34 - you may have to add /EHsc to your CXXFLAGS or define boost::throw_exception if BOOST_NO_EXCEPTIONS is defined.
35 Errors: C4530
36 - boost libraries will try to be smart and use the (pretty but often not useful) auto-linking feature of MSVC
Junxiao Shi7d054272016-08-04 17:00:41 +000037 So before calling `conf.check_boost` you might want to disabling by adding
38 conf.env.DEFINES_BOOST += ['BOOST_ALL_NO_LIB']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000039 Errors:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080040 - boost might also be compiled with /MT, which links the runtime statically.
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000041 If you have problems with redefined symbols,
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080042 self.env['DEFINES_%s' % var] += ['BOOST_ALL_NO_LIB']
43 self.env['CXXFLAGS_%s' % var] += ['/MD', '/EHsc']
44Passing `--boost-linkage_autodetect` might help ensuring having a correct linkage in some basic cases.
45
46'''
47
48import sys
49import re
50from waflib import Utils, Logs, Errors
51from waflib.Configure import conf
Junxiao Shi7d054272016-08-04 17:00:41 +000052from waflib.TaskGen import feature, after_method
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080053
Davide Pesaventof6625002022-07-31 17:15:02 -040054BOOST_LIBS = ['/usr/lib', '/usr/local/lib', '/opt/homebrew/lib', '/opt/local/lib', '/sw/lib', '/lib']
55BOOST_INCLUDES = ['/usr/include', '/usr/local/include', '/opt/homebrew/include', '/opt/local/include', '/sw/include']
Davide Pesavento77f1c762019-02-19 03:20:49 -050056
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080057BOOST_VERSION_FILE = 'boost/version.hpp'
58BOOST_VERSION_CODE = '''
59#include <iostream>
60#include <boost/version.hpp>
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000061int main() { std::cout << BOOST_LIB_VERSION << ":" << BOOST_VERSION << std::endl; }
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080062'''
Junxiao Shi7d054272016-08-04 17:00:41 +000063
64BOOST_ERROR_CODE = '''
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070065#include <boost/system/error_code.hpp>
66int main() { boost::system::error_code c; }
67'''
Junxiao Shi7d054272016-08-04 17:00:41 +000068
69PTHREAD_CODE = '''
70#include <pthread.h>
71static void* f(void*) { return 0; }
72int main() {
73 pthread_t th;
74 pthread_attr_t attr;
75 pthread_attr_init(&attr);
76 pthread_create(&th, &attr, &f, 0);
77 pthread_join(th, 0);
78 pthread_cleanup_push(0, 0);
79 pthread_cleanup_pop(0);
80 pthread_attr_destroy(&attr);
81}
82'''
83
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070084BOOST_THREAD_CODE = '''
85#include <boost/thread.hpp>
86int main() { boost::thread t; }
87'''
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080088
Junxiao Shi7d054272016-08-04 17:00:41 +000089BOOST_LOG_CODE = '''
90#include <boost/log/trivial.hpp>
Davide Pesavento77f1c762019-02-19 03:20:49 -050091int main() { BOOST_LOG_TRIVIAL(info) << "boost_log is working"; }
92'''
93
94BOOST_LOG_SETUP_CODE = '''
95#include <boost/log/trivial.hpp>
Junxiao Shi7d054272016-08-04 17:00:41 +000096#include <boost/log/utility/setup/console.hpp>
97#include <boost/log/utility/setup/common_attributes.hpp>
98int main() {
99 using namespace boost::log;
100 add_common_attributes();
101 add_console_log(std::clog, keywords::format = "%Message%");
Davide Pesavento77f1c762019-02-19 03:20:49 -0500102 BOOST_LOG_TRIVIAL(info) << "boost_log_setup is working";
Junxiao Shi7d054272016-08-04 17:00:41 +0000103}
104'''
105
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800106# toolsets from {boost_dir}/tools/build/v2/tools/common.jam
107PLATFORM = Utils.unversioned_sys_platform()
108detect_intel = lambda env: (PLATFORM == 'win32') and 'iw' or 'il'
109detect_clang = lambda env: (PLATFORM == 'darwin') and 'clang-darwin' or 'clang'
110detect_mingw = lambda env: (re.search('MinGW', env.CXX[0])) and 'mgw' or 'gcc'
111BOOST_TOOLSETS = {
112 'borland': 'bcb',
113 'clang': detect_clang,
114 'como': 'como',
115 'cw': 'cw',
116 'darwin': 'xgcc',
117 'edg': 'edg',
118 'g++': detect_mingw,
119 'gcc': detect_mingw,
120 'icpc': detect_intel,
121 'intel': detect_intel,
122 'kcc': 'kcc',
123 'kylix': 'bck',
124 'mipspro': 'mp',
125 'mingw': 'mgw',
126 'msvc': 'vc',
127 'qcc': 'qcc',
128 'sun': 'sw',
129 'sunc++': 'sw',
130 'tru64cxx': 'tru',
131 'vacpp': 'xlc'
132}
133
134
135def options(opt):
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000136 opt = opt.add_option_group('Boost Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800137 opt.add_option('--boost-includes', type='string',
138 default='', dest='boost_includes',
Junxiao Shi7d054272016-08-04 17:00:41 +0000139 help='''path to the directory where the boost includes are,
140 e.g., /path/to/boost_1_55_0/stage/include''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800141 opt.add_option('--boost-libs', type='string',
142 default='', dest='boost_libs',
Junxiao Shi7d054272016-08-04 17:00:41 +0000143 help='''path to the directory where the boost libs are,
144 e.g., path/to/boost_1_55_0/stage/lib''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800145 opt.add_option('--boost-mt', action='store_true',
146 default=False, dest='boost_mt',
147 help='select multi-threaded libraries')
148 opt.add_option('--boost-abi', type='string', default='', dest='boost_abi',
Junxiao Shi7d054272016-08-04 17:00:41 +0000149 help='''select libraries with tags (gd for debug, static is automatically added),
150 see doc Boost, Getting Started, chapter 6.1''')
Davide Pesaventofd674012019-02-06 02:00:12 -0500151 opt.add_option('--boost-linkage_autodetect', action='store_true', dest='boost_linkage_autodetect',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800152 help="auto-detect boost linkage options (don't get used to it / might break other stuff)")
153 opt.add_option('--boost-toolset', type='string',
154 default='', dest='boost_toolset',
Junxiao Shi7d054272016-08-04 17:00:41 +0000155 help='force a toolset e.g. msvc, vc90, \
156 gcc, mingw, mgw45 (default: auto)')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800157 py_version = '%d%d' % (sys.version_info[0], sys.version_info[1])
158 opt.add_option('--boost-python', type='string',
159 default=py_version, dest='boost_python',
Junxiao Shi7d054272016-08-04 17:00:41 +0000160 help='select the lib python with this version \
161 (default: %s)' % py_version)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800162
163
164@conf
165def __boost_get_version_file(self, d):
Junxiao Shi7d054272016-08-04 17:00:41 +0000166 if not d:
167 return None
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800168 dnode = self.root.find_dir(d)
169 if dnode:
170 return dnode.find_node(BOOST_VERSION_FILE)
171 return None
172
173@conf
174def boost_get_version(self, d):
175 """silently retrieve the boost version number"""
176 node = self.__boost_get_version_file(d)
177 if node:
178 try:
179 txt = node.read()
Junxiao Shi7d054272016-08-04 17:00:41 +0000180 except EnvironmentError:
Davide Pesaventofd674012019-02-06 02:00:12 -0500181 Logs.error('Could not read the file %r' % node.abspath())
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800182 else:
Junxiao Shi7d054272016-08-04 17:00:41 +0000183 re_but1 = re.compile('^#define\\s+BOOST_LIB_VERSION\\s+"(.+)"', re.M)
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000184 m1 = re_but1.search(txt)
Junxiao Shi7d054272016-08-04 17:00:41 +0000185 re_but2 = re.compile('^#define\\s+BOOST_VERSION\\s+(\\d+)', re.M)
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000186 m2 = re_but2.search(txt)
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000187 if m1 and m2:
188 return (m1.group(1), m2.group(1))
Davide Pesaventofd674012019-02-06 02:00:12 -0500189 return self.check_cxx(fragment=BOOST_VERSION_CODE, includes=[d], execute=True, define_ret=True).split(':')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800190
191@conf
192def boost_get_includes(self, *k, **kw):
193 includes = k and k[0] or kw.get('includes', None)
194 if includes and self.__boost_get_version_file(includes):
195 return includes
Junxiao Shi7d054272016-08-04 17:00:41 +0000196 for d in self.environ.get('INCLUDE', '').split(';') + BOOST_INCLUDES:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800197 if self.__boost_get_version_file(d):
198 return d
199 if includes:
Davide Pesaventofd674012019-02-06 02:00:12 -0500200 self.end_msg('headers not found in %s' % includes, 'YELLOW')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800201 self.fatal('The configuration failed')
202 else:
Davide Pesaventofd674012019-02-06 02:00:12 -0500203 self.end_msg('headers not found, please provide a --boost-includes argument (see help)', 'YELLOW')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800204 self.fatal('The configuration failed')
205
206
207@conf
208def boost_get_toolset(self, cc):
209 toolset = cc
210 if not cc:
211 build_platform = Utils.unversioned_sys_platform()
212 if build_platform in BOOST_TOOLSETS:
213 cc = build_platform
214 else:
215 cc = self.env.CXX_NAME
216 if cc in BOOST_TOOLSETS:
217 toolset = BOOST_TOOLSETS[cc]
218 return isinstance(toolset, str) and toolset or toolset(self.env)
219
220
221@conf
222def __boost_get_libs_path(self, *k, **kw):
223 ''' return the lib path and all the files in it '''
224 if 'files' in kw:
225 return self.root.find_dir('.'), Utils.to_list(kw['files'])
226 libs = k and k[0] or kw.get('libs', None)
227 if libs:
228 path = self.root.find_dir(libs)
229 files = path.ant_glob('*boost_*')
230 if not libs or not files:
Junxiao Shi7d054272016-08-04 17:00:41 +0000231 for d in self.environ.get('LIB', '').split(';') + BOOST_LIBS:
232 if not d:
233 continue
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800234 path = self.root.find_dir(d)
235 if path:
236 files = path.ant_glob('*boost_*')
237 if files:
238 break
239 path = self.root.find_dir(d + '64')
240 if path:
241 files = path.ant_glob('*boost_*')
242 if files:
243 break
244 if not path:
245 if libs:
Davide Pesaventofd674012019-02-06 02:00:12 -0500246 self.end_msg('libs not found in %s' % libs, 'YELLOW')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800247 self.fatal('The configuration failed')
248 else:
Davide Pesaventofd674012019-02-06 02:00:12 -0500249 self.end_msg('libs not found, please provide a --boost-libs argument (see help)', 'YELLOW')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800250 self.fatal('The configuration failed')
251
252 self.to_log('Found the boost path in %r with the libraries:' % path)
253 for x in files:
254 self.to_log(' %r' % x)
255 return path, files
256
257@conf
258def boost_get_libs(self, *k, **kw):
259 '''
260 return the lib path and the required libs
261 according to the parameters
262 '''
263 path, files = self.__boost_get_libs_path(**kw)
Junxiao Shi7d054272016-08-04 17:00:41 +0000264 files = sorted(files, key=lambda f: (len(f.name), f.name), reverse=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800265 toolset = self.boost_get_toolset(kw.get('toolset', ''))
Junxiao Shi7d054272016-08-04 17:00:41 +0000266 toolset_pat = '(-%s[0-9]{0,3})' % toolset
267 version = '-%s' % self.env.BOOST_VERSION
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800268
269 def find_lib(re_lib, files):
270 for file in files:
271 if re_lib.search(file.name):
272 self.to_log('Found boost lib %s' % file)
273 return file
274 return None
275
276 def format_lib_name(name):
277 if name.startswith('lib') and self.env.CC_NAME != 'msvc':
278 name = name[3:]
279 return name[:name.rfind('.')]
280
Junxiao Shi7d054272016-08-04 17:00:41 +0000281 def match_libs(lib_names, is_static):
282 libs = []
283 lib_names = Utils.to_list(lib_names)
284 if not lib_names:
285 return libs
286 t = []
287 if kw.get('mt', False):
288 t.append('-mt')
289 if kw.get('abi', None):
290 t.append('%s%s' % (is_static and '-s' or '-', kw['abi']))
291 elif is_static:
292 t.append('-s')
293 tags_pat = t and ''.join(t) or ''
294 ext = is_static and self.env.cxxstlib_PATTERN or self.env.cxxshlib_PATTERN
295 ext = ext.partition('%s')[2] # remove '%s' or 'lib%s' from PATTERN
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800296
Junxiao Shi7d054272016-08-04 17:00:41 +0000297 for lib in lib_names:
298 if lib == 'python':
299 # for instance, with python='27',
300 # accepts '-py27', '-py2', '27' and '2'
301 # but will reject '-py3', '-py26', '26' and '3'
302 tags = '({0})?((-py{2})|(-py{1}(?=[^0-9]))|({2})|({1}(?=[^0-9]))|(?=[^0-9])(?!-py))'.format(tags_pat, kw['python'][0], kw['python'])
303 else:
304 tags = tags_pat
305 # Trying libraries, from most strict match to least one
306 for pattern in ['boost_%s%s%s%s%s$' % (lib, toolset_pat, tags, version, ext),
307 'boost_%s%s%s%s$' % (lib, tags, version, ext),
308 # Give up trying to find the right version
309 'boost_%s%s%s%s$' % (lib, toolset_pat, tags, ext),
310 'boost_%s%s%s$' % (lib, tags, ext),
311 'boost_%s%s$' % (lib, ext),
312 'boost_%s' % lib]:
313 self.to_log('Trying pattern %s' % pattern)
314 file = find_lib(re.compile(pattern), files)
315 if file:
316 libs.append(format_lib_name(file.name))
317 break
318 else:
Davide Pesaventofd674012019-02-06 02:00:12 -0500319 self.end_msg('lib %s not found in %s' % (lib, path.abspath()), 'YELLOW')
Junxiao Shi7d054272016-08-04 17:00:41 +0000320 self.fatal('The configuration failed')
321 return libs
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800322
Junxiao Shi7d054272016-08-04 17:00:41 +0000323 return path.abspath(), match_libs(kw.get('lib', None), False), match_libs(kw.get('stlib', None), True)
324
325@conf
326def _check_pthread_flag(self, *k, **kw):
327 '''
328 Computes which flags should be added to CXXFLAGS and LINKFLAGS to compile in multi-threading mode
329
330 Yes, we *need* to put the -pthread thing in CPPFLAGS because with GCC3,
331 boost/thread.hpp will trigger a #error if -pthread isn't used:
332 boost/config/requires_threads.hpp:47:5: #error "Compiler threading support
333 is not turned on. Please set the correct command line options for
334 threading: -pthread (Linux), -pthreads (Solaris) or -mthreads (Mingw32)"
335
336 Based on _BOOST_PTHREAD_FLAG(): https://github.com/tsuna/boost.m4/blob/master/build-aux/boost.m4
337 '''
338
339 var = kw.get('uselib_store', 'BOOST')
340
341 self.start_msg('Checking the flags needed to use pthreads')
342
343 # The ordering *is* (sometimes) important. Some notes on the
344 # individual items follow:
345 # (none): in case threads are in libc; should be tried before -Kthread and
346 # other compiler flags to prevent continual compiler warnings
347 # -lpthreads: AIX (must check this before -lpthread)
348 # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)
349 # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)
350 # -llthread: LinuxThreads port on FreeBSD (also preferred to -pthread)
351 # -pthread: GNU Linux/GCC (kernel threads), BSD/GCC (userland threads)
352 # -pthreads: Solaris/GCC
353 # -mthreads: MinGW32/GCC, Lynx/GCC
354 # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it
355 # doesn't hurt to check since this sometimes defines pthreads too;
356 # also defines -D_REENTRANT)
357 # ... -mt is also the pthreads flag for HP/aCC
358 # -lpthread: GNU Linux, etc.
359 # --thread-safe: KAI C++
Davide Pesaventofd674012019-02-06 02:00:12 -0500360 if Utils.unversioned_sys_platform() == 'sunos':
Junxiao Shi7d054272016-08-04 17:00:41 +0000361 # On Solaris (at least, for some versions), libc contains stubbed
362 # (non-functional) versions of the pthreads routines, so link-based
363 # tests will erroneously succeed. (We need to link with -pthreads/-mt/
364 # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather
365 # a function called by this macro, so we could check for that, but
366 # who knows whether they'll stub that too in a future libc.) So,
367 # we'll just look for -pthreads and -lpthread first:
Davide Pesaventofd674012019-02-06 02:00:12 -0500368 boost_pthread_flags = ['-pthreads', '-lpthread', '-mt', '-pthread']
Junxiao Shi7d054272016-08-04 17:00:41 +0000369 else:
Davide Pesaventofd674012019-02-06 02:00:12 -0500370 boost_pthread_flags = ['', '-lpthreads', '-Kthread', '-kthread', '-llthread', '-pthread',
371 '-pthreads', '-mthreads', '-lpthread', '--thread-safe', '-mt']
Junxiao Shi7d054272016-08-04 17:00:41 +0000372
373 for boost_pthread_flag in boost_pthread_flags:
374 try:
375 self.env.stash()
376 self.env['CXXFLAGS_%s' % var] += [boost_pthread_flag]
377 self.env['LINKFLAGS_%s' % var] += [boost_pthread_flag]
Davide Pesaventofd674012019-02-06 02:00:12 -0500378 self.check_cxx(code=PTHREAD_CODE, msg=None, use=var, execute=False, quiet=True)
Junxiao Shi7d054272016-08-04 17:00:41 +0000379 self.end_msg(boost_pthread_flag)
380 return
381 except self.errors.ConfigurationError:
382 self.env.revert()
Davide Pesaventofd674012019-02-06 02:00:12 -0500383 self.end_msg('none')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800384
385@conf
386def check_boost(self, *k, **kw):
387 """
388 Initialize boost libraries to be used.
389
390 Keywords: you can pass the same parameters as with the command line (without "--boost-").
391 Note that the command line has the priority, and should preferably be used.
392 """
393 if not self.env['CXX']:
394 self.fatal('load a c++ compiler first, conf.load("compiler_cxx")')
395
Junxiao Shi7d054272016-08-04 17:00:41 +0000396 params = {
397 'lib': k and k[0] or kw.get('lib', None),
398 'stlib': kw.get('stlib', None)
399 }
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800400 for key, value in self.options.__dict__.items():
401 if not key.startswith('boost_'):
402 continue
403 key = key[len('boost_'):]
404 params[key] = value and value or kw.get(key, '')
405
406 var = kw.get('uselib_store', 'BOOST')
407
Davide Pesaventofd674012019-02-06 02:00:12 -0500408 if not self.env.DONE_FIND_BOOST_COMMON:
409 self.find_program('dpkg-architecture', var='DPKG_ARCHITECTURE', mandatory=False)
410 if self.env.DPKG_ARCHITECTURE:
411 deb_host_multiarch = self.cmd_and_log([self.env.DPKG_ARCHITECTURE[0], '-qDEB_HOST_MULTIARCH'])
412 BOOST_LIBS.insert(0, '/usr/lib/%s' % deb_host_multiarch.strip())
Eric Newberry25038f32018-04-05 21:57:30 -0700413
Davide Pesaventofd674012019-02-06 02:00:12 -0500414 self.start_msg('Checking boost includes')
415 self.env['INCLUDES_%s' % var] = inc = self.boost_get_includes(**params)
416 versions = self.boost_get_version(inc)
417 self.env.BOOST_VERSION = versions[0]
418 self.env.BOOST_VERSION_NUMBER = int(versions[1])
419 self.end_msg('%d.%d.%d' % (int(versions[1]) / 100000,
420 int(versions[1]) / 100 % 1000,
421 int(versions[1]) % 100))
422 if Logs.verbose:
423 Logs.pprint('CYAN', ' path : %s' % self.env['INCLUDES_%s' % var])
424
425 self.env.DONE_FIND_BOOST_COMMON = True
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800426
Junxiao Shi7d054272016-08-04 17:00:41 +0000427 if not params['lib'] and not params['stlib']:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800428 return
Junxiao Shi7d054272016-08-04 17:00:41 +0000429 if 'static' in kw or 'static' in params:
430 Logs.warn('boost: static parameter is deprecated, use stlib instead.')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800431 self.start_msg('Checking boost libs')
Junxiao Shi7d054272016-08-04 17:00:41 +0000432 path, libs, stlibs = self.boost_get_libs(**params)
433 self.env['LIBPATH_%s' % var] = [path]
434 self.env['STLIBPATH_%s' % var] = [path]
435 self.env['LIB_%s' % var] = libs
436 self.env['STLIB_%s' % var] = stlibs
Davide Pesaventofd674012019-02-06 02:00:12 -0500437 self.end_msg(' '.join(libs + stlibs))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800438 if Logs.verbose:
439 Logs.pprint('CYAN', ' path : %s' % path)
Junxiao Shi7d054272016-08-04 17:00:41 +0000440 Logs.pprint('CYAN', ' shared libs : %s' % libs)
441 Logs.pprint('CYAN', ' static libs : %s' % stlibs)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800442
Junxiao Shi7d054272016-08-04 17:00:41 +0000443 def has_shlib(lib):
444 return params['lib'] and lib in params['lib']
445 def has_stlib(lib):
446 return params['stlib'] and lib in params['stlib']
447 def has_lib(lib):
448 return has_shlib(lib) or has_stlib(lib)
449 if has_lib('thread'):
450 # not inside try_link to make check visible in the output
451 self._check_pthread_flag(k, kw)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800452
453 def try_link():
Junxiao Shi7d054272016-08-04 17:00:41 +0000454 if has_lib('system'):
455 self.check_cxx(fragment=BOOST_ERROR_CODE, use=var, execute=False)
456 if has_lib('thread'):
457 self.check_cxx(fragment=BOOST_THREAD_CODE, use=var, execute=False)
Davide Pesavento77f1c762019-02-19 03:20:49 -0500458 if has_lib('log') or has_lib('log_setup'):
Junxiao Shi7d054272016-08-04 17:00:41 +0000459 if not has_lib('thread'):
460 self.env['DEFINES_%s' % var] += ['BOOST_LOG_NO_THREADS']
Davide Pesavento77f1c762019-02-19 03:20:49 -0500461 if has_shlib('log') or has_shlib('log_setup'):
Junxiao Shi7d054272016-08-04 17:00:41 +0000462 self.env['DEFINES_%s' % var] += ['BOOST_LOG_DYN_LINK']
Davide Pesavento77f1c762019-02-19 03:20:49 -0500463 if has_lib('log_setup'):
464 self.check_cxx(fragment=BOOST_LOG_SETUP_CODE, use=var, execute=False)
465 else:
466 self.check_cxx(fragment=BOOST_LOG_CODE, use=var, execute=False)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800467
468 if params.get('linkage_autodetect', False):
Davide Pesaventofd674012019-02-06 02:00:12 -0500469 self.start_msg('Attempting to detect boost linkage flags')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800470 toolset = self.boost_get_toolset(kw.get('toolset', ''))
Junxiao Shi7d054272016-08-04 17:00:41 +0000471 if toolset in ('vc',):
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800472 # disable auto-linking feature, causing error LNK1181
473 # because the code wants to be linked against
474 self.env['DEFINES_%s' % var] += ['BOOST_ALL_NO_LIB']
475
476 # if no dlls are present, we guess the .lib files are not stubs
477 has_dlls = False
478 for x in Utils.listdir(path):
479 if x.endswith(self.env.cxxshlib_PATTERN % ''):
480 has_dlls = True
481 break
482 if not has_dlls:
483 self.env['STLIBPATH_%s' % var] = [path]
484 self.env['STLIB_%s' % var] = libs
485 del self.env['LIB_%s' % var]
486 del self.env['LIBPATH_%s' % var]
487
488 # we attempt to play with some known-to-work CXXFLAGS combinations
489 for cxxflags in (['/MD', '/EHsc'], []):
490 self.env.stash()
Davide Pesaventofd674012019-02-06 02:00:12 -0500491 self.env['CXXFLAGS_%s' % var] += cxxflags
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800492 try:
493 try_link()
Davide Pesaventofd674012019-02-06 02:00:12 -0500494 self.end_msg('ok: winning cxxflags combination: %s' % (self.env['CXXFLAGS_%s' % var]))
Junxiao Shi7d054272016-08-04 17:00:41 +0000495 exc = None
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800496 break
Junxiao Shi7d054272016-08-04 17:00:41 +0000497 except Errors.ConfigurationError as e:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800498 self.env.revert()
Junxiao Shi7d054272016-08-04 17:00:41 +0000499 exc = e
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800500
Junxiao Shi7d054272016-08-04 17:00:41 +0000501 if exc is not None:
Davide Pesaventofd674012019-02-06 02:00:12 -0500502 self.end_msg('Could not auto-detect boost linking flags combination, you may report it to boost.py author', ex=exc)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800503 self.fatal('The configuration failed')
504 else:
Davide Pesaventofd674012019-02-06 02:00:12 -0500505 self.end_msg('Boost linkage flags auto-detection not implemented (needed ?) for this toolchain')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800506 self.fatal('The configuration failed')
507 else:
508 self.start_msg('Checking for boost linkage')
509 try:
510 try_link()
511 except Errors.ConfigurationError as e:
Davide Pesaventofd674012019-02-06 02:00:12 -0500512 self.end_msg('Could not link against boost libraries using supplied options', 'YELLOW')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800513 self.fatal('The configuration failed')
514 self.end_msg('ok')
Junxiao Shi7d054272016-08-04 17:00:41 +0000515
516
517@feature('cxx')
518@after_method('apply_link')
519def install_boost(self):
520 if install_boost.done or not Utils.is_win32 or not self.bld.cmd.startswith('install'):
521 return
522 install_boost.done = True
523 inst_to = getattr(self, 'install_path', '${BINDIR}')
524 for lib in self.env.LIB_BOOST:
525 try:
526 file = self.bld.find_file(self.env.cxxshlib_PATTERN % lib, self.env.LIBPATH_BOOST)
527 self.bld.install_files(inst_to, self.bld.root.find_node(file))
528 except:
529 continue
530install_boost.done = False