Skip to content

Commit bfef34e

Browse files
committed
ADIOS2 have removed support for the optional debug argument in the ADIOS class, which caused Chimbuko config to fail. This hopefully fixes it
1 parent 1213fd3 commit bfef34e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ if test "x$with_adios2" != "x"; then
118118

119119
LIBS_BAK=${LIBS}
120120

121-
#2.6.0
121+
#2.6.0+
122122
LIBS+=" -L$with_adios2/lib -L$with_adios2/lib64 -ladios2_cxx11 -Wl,-rpath-link,${with_adios2}/lib:${with_adios2}/lib64 -Wl,-rpath,${with_adios2}/lib:${with_adios2}/lib64"
123123
AC_LINK_IFELSE(
124124
[
125125
AC_LANG_PROGRAM(
126126
[[ #include<adios2.h>
127-
]], [[ adios2::ADIOS ad(adios2::DebugON); ]]
127+
]], [[ adios2::ADIOS ad(); ]]
128128
)
129129
], [adios2_links26=yes], [adios2_links26=no]
130130
)

0 commit comments

Comments
 (0)