Skip to content
Snippets Groups Projects
Commit 9e7f53a3 authored by Peter Scheibel's avatar Peter Scheibel Committed by Todd Gamblin
Browse files

[WIP] Use boost system layout by default (#1955)

Use boost system layout by default
parent f555b811
No related branches found
No related tags found
No related merge requests found
...@@ -41,8 +41,8 @@ class Boost(Package): ...@@ -41,8 +41,8 @@ class Boost(Package):
list_url = "http://sourceforge.net/projects/boost/files/boost/" list_url = "http://sourceforge.net/projects/boost/files/boost/"
list_depth = 2 list_depth = 2
version('1.62.0', '5fb94629535c19e48703bdb2b2e9490f') # TODO: fix build version('1.62.0', '5fb94629535c19e48703bdb2b2e9490f')
version('1.61.0', '6095876341956f65f9d35939ccea1a9f', preferred=True) version('1.61.0', '6095876341956f65f9d35939ccea1a9f')
version('1.60.0', '65a840e1a0b13a558ff19eeb2c4f0cbe') version('1.60.0', '65a840e1a0b13a558ff19eeb2c4f0cbe')
version('1.59.0', '6aa9a5c6a4ca1016edd0ed1178e3cb87') version('1.59.0', '6aa9a5c6a4ca1016edd0ed1178e3cb87')
version('1.58.0', 'b8839650e61e9c1c0a89f371dd475546') version('1.58.0', 'b8839650e61e9c1c0a89f371dd475546')
...@@ -110,12 +110,14 @@ class Boost(Package): ...@@ -110,12 +110,14 @@ class Boost(Package):
description="Additionally build shared libraries") description="Additionally build shared libraries")
variant('multithreaded', default=True, variant('multithreaded', default=True,
description="Build multi-threaded versions of libraries") description="Build multi-threaded versions of libraries")
variant('singlethreaded', default=True, variant('singlethreaded', default=False,
description="Build single-threaded versions of libraries") description="Build single-threaded versions of libraries")
variant('icu', default=False, variant('icu', default=False,
description="Build with Unicode and ICU suport") description="Build with Unicode and ICU suport")
variant('graph', default=False, variant('graph', default=False,
description="Build the Boost Graph library") description="Build the Boost Graph library")
variant('taggedlayout', default=False,
description="Augment library names with build options")
depends_on('icu4c', when='+icu') depends_on('icu4c', when='+icu')
depends_on('python', when='+python') depends_on('python', when='+python')
...@@ -208,12 +210,20 @@ def determine_b2_options(self, spec, options): ...@@ -208,12 +210,20 @@ def determine_b2_options(self, spec, options):
if '+singlethreaded' in spec: if '+singlethreaded' in spec:
threadingOpts.append('single') threadingOpts.append('single')
if not threadingOpts: if not threadingOpts:
raise RuntimeError("""At least one of {singlethreaded, raise RuntimeError("At least one of {singlethreaded, " +
multithreaded} must be enabled""") "multithreaded} must be enabled")
if '+taggedlayout' in spec:
layout = 'tagged'
else:
if len(threadingOpts) > 1:
raise RuntimeError("Cannot build both single and " +
"multi-threaded targets with system layout")
layout = 'system'
options.extend([ options.extend([
'link=%s' % ','.join(linkTypes), 'link=%s' % ','.join(linkTypes),
'--layout=tagged' '--layout=%s' % layout
]) ])
if not spec.satisfies('%intel'): if not spec.satisfies('%intel'):
...@@ -223,6 +233,12 @@ def determine_b2_options(self, spec, options): ...@@ -223,6 +233,12 @@ def determine_b2_options(self, spec, options):
return threadingOpts return threadingOpts
def add_buildopt_symlinks(self, prefix):
with working_dir(prefix.lib):
for lib in os.listdir(os.curdir):
prefix, remainder = lib.split('.', 1)
symlink(lib, '%s-mt.%s' % (prefix, remainder))
def install(self, spec, prefix): def install(self, spec, prefix):
# On Darwin, Boost expects the Darwin libtool. However, one of the # On Darwin, Boost expects the Darwin libtool. However, one of the
# dependencies may have pulled in Spack's GNU libtool, and these two # dependencies may have pulled in Spack's GNU libtool, and these two
...@@ -281,11 +297,16 @@ def install(self, spec, prefix): ...@@ -281,11 +297,16 @@ def install(self, spec, prefix):
threadingOpts = self.determine_b2_options(spec, b2_options) threadingOpts = self.determine_b2_options(spec, b2_options)
b2('--clean')
# In theory it could be done on one call but it fails on # In theory it could be done on one call but it fails on
# Boost.MPI if the threading options are not separated. # Boost.MPI if the threading options are not separated.
for threadingOpt in threadingOpts: for threadingOpt in threadingOpts:
b2('install', 'threading=%s' % threadingOpt, *b2_options) b2('install', 'threading=%s' % threadingOpt, *b2_options)
if '+multithreaded' in spec and '~taggedlayout' in spec:
self.add_buildopt_symlinks(prefix)
# The shared libraries are not installed correctly # The shared libraries are not installed correctly
# on Darwin; correct this # on Darwin; correct this
if (sys.platform == 'darwin') and ('+shared' in spec): if (sys.platform == 'darwin') and ('+shared' in spec):
......
...@@ -96,8 +96,7 @@ def install(self, spec, prefix): ...@@ -96,8 +96,7 @@ def install(self, spec, prefix):
options.extend([ options.extend([
'build_thread_safe=yes', 'build_thread_safe=yes',
'boost_inc_dir={0}'.format(spec['boost'].prefix.include), 'boost_inc_dir={0}'.format(spec['boost'].prefix.include),
'boost_lib_dir={0}'.format(spec['boost'].prefix.lib), 'boost_lib_dir={0}'.format(spec['boost'].prefix.lib)
'boost_thread_lib=boost_thread-mt,boost_system-mt'
]) ])
else: else:
options.append('build_thread_safe=no') options.append('build_thread_safe=no')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment