From: Martin Kronbichler Date: Mon, 19 Jun 2023 17:42:18 +0000 (+0200) Subject: Recommend the use of LD_PRELOAD X-Git-Tag: v9.5.0-rc1~85^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7e88a4eda8fcd50c88a2f5696baeda4b15d3db9;p=dealii.git Recommend the use of LD_PRELOAD --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 59b8f75c6b..4f81431744 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1716,10 +1716,10 @@ protected: * `evaluation_template_face_factory.templates.h` with the * `FE_EVAL_FACTORY_DEGREE_MAX` overriden to the desired value. In the second * option, symbols will be available twice, and it depends on your linker and - * dynamic library loader whether the user-specified setting takes - * precendence. You can check if fast evaluation/integration for a given - * degree/n_quadrature_points pair by calling - * FEEvaluation::fast_evaluation_supported() or + * dynamic library loader whether the user-specified setting takes precedence; + * use `LD_PRELOAD` to select the desired library. You can check if fast + * evaluation/integration for a given degree/n_quadrature_points pair by + * calling FEEvaluation::fast_evaluation_supported() or * FEFaceEvaluation::fast_evaluation_supported(). * *

Handling multi-component systems