diff --git a/cmake/modules/FindOrFetchBTAS.cmake b/cmake/modules/FindOrFetchBTAS.cmake index 775d1964b6..57a4b94ac0 100644 --- a/cmake/modules/FindOrFetchBTAS.cmake +++ b/cmake/modules/FindOrFetchBTAS.cmake @@ -55,10 +55,11 @@ if (NOT TARGET BTAS::BTAS) target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_UPPER=1) else() if (NOT LINALG_MANGLING STREQUAL lower_) - message(WARNING "Linear algebra libraries' mangling convention not specified; specify -DLINALG_MANGLING={lower,lower_,UPPER}, if needed; will assume lower_") + message(WARNING "Linear algebra libraries' mangling convention not specified; specify -DLINALG_MANGLING={lower,lower_,UPPER}, if needed; BLASPP will try to autodetect") endif(NOT LINALG_MANGLING STREQUAL lower_) - target_compile_definitions(blaspp PUBLIC -DBLAS_FORTRAN_ADD_=1) - target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_ADD_=1) + # these were needed for some configs at some point in the past? But in most cases they just produce compile noise +# target_compile_definitions(blaspp PUBLIC -DBLAS_FORTRAN_ADD_=1) +# target_compile_definitions(lapackpp PUBLIC -DLAPACK_FORTRAN_ADD_=1) endif() endif (_linalgpp_use_standard_linalg_kits) diff --git a/doc/dox/dev/Customizing-Arrays.md b/doc/dox/dev/Customizing-Arrays.md index 7f06690be2..ef28b67972 100644 --- a/doc/dox/dev/Customizing-Arrays.md +++ b/doc/dox/dev/Customizing-Arrays.md @@ -424,7 +424,7 @@ public: // MADNESS compliant serialization template - void serialize(const Archive&); + void serialize(Archive&); }; // class MyLazyTile ```