diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml index a000b2ae28..3889473b6e 100644 --- a/documentation/ref-manual/ref-classes.xml +++ b/documentation/ref-manual/ref-classes.xml @@ -1697,7 +1697,11 @@ textrel: Checks for ELF binaries that contain relocations in their .text sections, which can result in a - performance impact at runtime. + performance impact at runtime. + See the explanation for the + ELF binary + message for more information regarding runtime performance issues. + unsafe-references-in-binaries: Reports when a binary installed in ${base_libdir}, diff --git a/documentation/ref-manual/ref-qa-checks.xml b/documentation/ref-manual/ref-qa-checks.xml index 54cd4336eb..7eaeb7fa04 100644 --- a/documentation/ref-manual/ref-qa-checks.xml +++ b/documentation/ref-manual/ref-qa-checks.xml @@ -467,8 +467,8 @@ can be found then it should be implemented. I can't find one at the moment. - Typically, the way to solve this performance issue is to - add "-fPIC" to the compiler command-line options. + Typically, the way to solve this performance issue is + to add "-fPIC" to the compiler command-line options. For example, given software that reads CFLAGS when you build it, you can add the following to your @@ -476,9 +476,6 @@ can be found then it should be implemented. I can't find one at the moment. CFLAGS_append = " -fPIC " - - - For more information on text relocations at runtime, see .