diff --git a/documentation/ref-manual/ref-qa-checks.xml b/documentation/ref-manual/ref-qa-checks.xml index b4657e2ced..54cd4336eb 100644 --- a/documentation/ref-manual/ref-qa-checks.xml +++ b/documentation/ref-manual/ref-qa-checks.xml @@ -464,11 +464,18 @@ can be found then it should be implemented. I can't find one at the moment. .text sections. This situation can result in a performance impact at runtime. - Tip - If you do experience runtime performance issues, - you could try assigning "-fPIC/-fpic" to - gcc. - + + + + 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 + recipe: + + CFLAGS_append = " -fPIC " +