
* FAODEL: Add FAODEL package to spack
FAODEL (Flexible, Asynchronous, Object Data-Exchange Libraries) is a collection
of software libraries that are used to implement different data management
services on high-performance computing (HPC) platforms. This project is part of
the Advanced Technology Development and Mitigation (ATDM) effort for NNSA's ASC
program at Sandia National Laboratories.
(cherry picked from commit 6afe045d25
)
* FAODEL: Update FAODEL package
Dependencies: set minimum versions for boost, cmake and libfabric
Dependencies: add conflict for boost v1.59.0
Patch: add a patch for v1.1803.1
Patch: add a when= for the v1.1811.1 specific patches
Compiler: check for C++11 support in gcc
(cherry picked from commit fb6ed2b3cf20d7e4fff647cba5a70887a78f627f)
* FAODEL: Update FAODEL package
* replace previous maintainers with @tkordenbrock and @craigulmer
* default to shared libs to meet Spack policy
* increase min boost version to 1.60.0 and remove boost 1.59.0 conflict
* replace complex version check with conflict for gcc <= 4.8.0 (C++11 support required)
* set type=build for cmake
* enable googletest for all versions with type=build
* enable tests for for all versions except when MPI is disabled
* FAODEL: Update FAODEL package
* add version v1.1811.2
* limit comment line length
36 lines
913 B
Diff
36 lines
913 B
Diff
diff --git a/src/faodel-common/LoggingInterface.cpp b/src/faodel-common/LoggingInterface.cpp
|
|
index d15eb23..86bf0ef 100644
|
|
--- a/src/faodel-common/LoggingInterface.cpp
|
|
+++ b/src/faodel-common/LoggingInterface.cpp
|
|
@@ -11,7 +11,7 @@
|
|
|
|
|
|
#if Faodel_LOGGINGINTERFACE_DISABLED==0 && Faodel_LOGGINGINTERFACE_USE_SBL==1
|
|
-#include <sbl/sbl_logger.hpp>
|
|
+#include <sbl/sbl_logger.hh>
|
|
#endif
|
|
|
|
|
|
@@ -27,7 +27,7 @@
|
|
|
|
#if Faodel_LOGGINGINTERFACE_USE_SBL==1
|
|
|
|
-#include <sbl/sbl_logger.hpp>
|
|
+#include <sbl/sbl_logger.hh>
|
|
|
|
sbl::logger *faodel::LoggingInterface::sbl_logger=nullptr;
|
|
|
|
diff --git a/src/sbl/README_SBL.md b/src/sbl/README_SBL.md
|
|
index d490f75..4eec0ee 100644
|
|
--- a/src/sbl/README_SBL.md
|
|
+++ b/src/sbl/README_SBL.md
|
|
@@ -205,7 +205,7 @@ Example:
|
|
#include <thread>
|
|
#include <map>
|
|
|
|
- #include "sbl/sbl_logger.hpp"
|
|
+ #include "sbl/sbl_logger.hh"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|