[OpenMP][NFC] Adding FAQ Entry for errors with static libraries

GitOrigin-RevId: ed8943c08769082f4ce5e7682a4ff53ae25bee36
diff --git a/docs/SupportAndFAQ.rst b/docs/SupportAndFAQ.rst
index 73a2861..66a808e 100644
--- a/docs/SupportAndFAQ.rst
+++ b/docs/SupportAndFAQ.rst
@@ -117,4 +117,21 @@
 offloading <remote_offloading_plugin>`.
 By using ``libomptarget.rtl.rpc.so`` and ``openmp-offloading-server``, it is
 possible to explicitly perform memory transfers between processes on the host
-CPU and run sanitizers while doing so in order to catch these errors.
\ No newline at end of file
+CPU and run sanitizers while doing so in order to catch these errors.
+
+Q: Why does my application say "Named symbol not found" and abort when I run it?
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+This is most likely caused by trying to use OpenMP offloading with static
+libraries. Static libraries do not contain any device code, so when the runtime
+attempts to execute the target region it will not be found and you will get an
+an error like this.
+
+.. code-block:: text
+
+   CUDA error: Loading '__omp_offloading_fd02_3231c15__Z3foov_l2' Failed
+   CUDA error: named symbol not found
+   Libomptarget error: Unable to generate entries table for device id 0.
+
+Currently, the only solution is to change how the application is built and avoid
+the use of static libraries.