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
0086c475
Unverified
Commit
0086c475
authored
4 years ago
by
eugeneswalker
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
patch lambda capture issue for @1.1906.1, fixed in upstream faodel@master (#16935)
parent
3347ef2d
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/faodel/lambda-capture-f0267fc.patch
+26
-0
26 additions, 0 deletions
...epos/builtin/packages/faodel/lambda-capture-f0267fc.patch
var/spack/repos/builtin/packages/faodel/package.py
+1
-0
1 addition, 0 deletions
var/spack/repos/builtin/packages/faodel/package.py
with
27 additions
and
0 deletions
var/spack/repos/builtin/packages/faodel/lambda-capture-f0267fc.patch
0 → 100644
+
26
−
0
View file @
0086c475
From f0267fc728d0f49ad396b83e8e62fba54027f31f Mon Sep 17 00:00:00 2001
From: Craig Ulmer <craig@craigulmer.com>
Date: Fri, 29 May 2020 23:08:29 -0700
Subject: [PATCH] FIX: Removes variable from lambda capture that conflicted
with args
---
src/kelpie/pools/DHTPool/DHTPool.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kelpie/pools/DHTPool/DHTPool.cpp b/src/kelpie/pools/DHTPool/DHTPool.cpp
index df9c1d3..d24aa89 100644
--- a/src/kelpie/pools/DHTPool/DHTPool.cpp
+++ b/src/kelpie/pools/DHTPool/DHTPool.cpp
@@ -229,7 +229,7 @@
rc_t DHTPool::Need(const Key &key, size_t expected_ldo_user_bytes, lunasa::DataO
bool is_found=false;
rc_t rc = Want(key, expected_ldo_user_bytes,
- [&key, &returned_ldo, &cv, &is_found] (bool success, Key key, lunasa::DataObject result_ldo,
+ [&returned_ldo, &cv, &is_found] (bool success, Key key, lunasa::DataObject result_ldo,
const kv_row_info_t &ri, const kv_col_info_t &c) {
if(success) {
*returned_ldo = result_ldo;
--
2.24.2 (Apple Git-127)
This diff is collapsed.
Click to expand it.
var/spack/repos/builtin/packages/faodel/package.py
+
1
−
0
View file @
0086c475
...
...
@@ -55,6 +55,7 @@ class Faodel(CMakePackage):
patch
(
'
faodel_mpi.patch
'
,
when
=
'
@1.1811.1 ~mpi
'
)
# FAODEL Github issue #5
patch
(
'
faodel_sbl.patch
'
,
when
=
'
@1.1811.1 logging=sbl
'
)
patch
(
'
lambda-capture-f0267fc.patch
'
,
when
=
'
@1.1906.1
'
)
def
cmake_args
(
self
):
spec
=
self
.
spec
...
...
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