Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
30
Issue boards
Milestones
Wiki
Code
Merge requests
30
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Commits
91663b46
Commit
91663b46
authored
1 month ago
by
Dennis Terhorst
Committed by
Eleni Mathioulaki
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
fix(nest): add missing jemalloc dependency
parent
be1abf43
No related branches found
Branches containing commit
No related tags found
2 merge requests
!676
create new experimental release
,
!666
Add `jemalloc` as dependency for NEST
Pipeline
#61210
failed with stage
in 3 hours, 23 minutes, and 46 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/nest/package.py
+3
-0
3 additions, 0 deletions
packages/nest/package.py
with
3 additions
and
0 deletions
packages/nest/package.py
+
3
−
0
View file @
91663b46
...
...
@@ -75,6 +75,8 @@ class Nest(CMakePackage):
description
=
"
Enable direct reading of connectivity from SONATA files
"
)
variant
(
'
boost
'
,
default
=
True
,
description
=
"
Enable optimizations provided via Boost library algorithms and containers
"
)
variant
(
'
jemalloc
'
,
default
=
True
,
description
=
"
Pull in jemalloc as run-time dependency.
"
)
# TODO add variants for neurosim and music when these are in spack
conflicts
(
'
~gsl
'
,
when
=
'
@:2.10.99
'
,
...
...
@@ -99,6 +101,7 @@ class Nest(CMakePackage):
depends_on
(
'
hdf5+cxx+mpi
'
,
when
=
'
@3.4.99:+sonata+mpi
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
hdf5+cxx~mpi
'
,
when
=
'
@3.4.99:+sonata~mpi
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-pandas
'
,
when
=
'
@3.4.99:+sonata
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
jemalloc
'
,
when
=
'
@3:+jemalloc
'
,
type
=
(
'
run
'
,
'
test
'
))
depends_on
(
'
py-nose
'
,
when
=
'
@:2.99.99+python+testsuite
'
,
type
=
'
test
'
)
depends_on
(
'
py-pytest
'
,
when
=
'
@3.0:+testsuite
'
,
type
=
'
test
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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