Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
9e7f53a3
Commit
9e7f53a3
authored
8 years ago
by
Peter Scheibel
Committed by
Todd Gamblin
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[WIP] Use boost system layout by default (#1955)
Use boost system layout by default
parent
f555b811
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
var/spack/repos/builtin/packages/boost/package.py
+27
-6
27 additions, 6 deletions
var/spack/repos/builtin/packages/boost/package.py
var/spack/repos/builtin/packages/cantera/package.py
+1
-2
1 addition, 2 deletions
var/spack/repos/builtin/packages/cantera/package.py
with
28 additions
and
8 deletions
var/spack/repos/builtin/packages/boost/package.py
+
27
−
6
View file @
9e7f53a3
...
@@ -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
=
Tru
e
,
variant
(
'
singlethreaded
'
,
default
=
Fals
e
,
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
):
...
...
This diff is collapsed.
Click to expand it.
var/spack/repos/builtin/packages/cantera/package.py
+
1
−
2
View file @
9e7f53a3
...
@@ -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
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment