[Openmp-commits] [PATCH] D104474: [OpenMP] Update FAQ with additional instructions for enabling cuda offloading
Asher Mancinelli via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu Jun 17 11:35:33 PDT 2021
ashermancinelli updated this revision to Diff 352806.
ashermancinelli added a comment.
Remove CMake example. Use more generic language.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104474/new/
https://reviews.llvm.org/D104474
Files:
openmp/docs/SupportAndFAQ.rst
Index: openmp/docs/SupportAndFAQ.rst
===================================================================
--- openmp/docs/SupportAndFAQ.rst
+++ openmp/docs/SupportAndFAQ.rst
@@ -56,6 +56,8 @@
information about building LLVM is available `here <https://llvm.org/docs/GettingStarted.html>`__.).
Make sure all backends that are targeted by OpenMP to be enabled. By default,
Clang will be built with all backends enabled.
+When building with `LLVM_ENABLE_RUNTIMES="openmp"` OpenMP should not be enabled
+in `LLVM_ENABLE_PROJECTS` because it is enabled by default.
For Nvidia offload, please see :ref:`_build_nvidia_offload_capable_compiler`.
For AMDGPU offload, please see :ref:`_build_amdgpu_offload_capable_compiler`.
@@ -206,3 +208,26 @@
Dynamically linked libraries can be only used if there is no device code split
between the library and application. Anything declared on the device inside the
shared library will not be visible to the application when it's linked.
+
+Q: How to build an OpenMP offload capable compiler with an outdated host compiler?
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Enabling the OpenMP runtime will perform a two-stage build for you.
+If your host compiler is different from your system-wide compiler, you may need
+to set some environment variables such that clang will be able to find the
+correct GCC toolchain in the second stage of the build.
+
+For example, if your system-wide GCC installation is too old to build LLVM and
+you would like to use a newer GCC, export the following environment variable
+to inform clang of the GCC installation you would like to use in the second stage.
+
+.. code-block:: console
+
+ $ export CCC_OVERRIDE_OPTIONS=^--gcc-toolchain=/path/to/gcc/install
+
+The `CCC_OVERRIDE_OPTIONS` environment variable injects the GCC toolchain path
+into the clang invocations.
+This issue may manifest itself in compilation errors with the C++ standard being used (eg
+`error: no template named 'enable_if_t' in namespace 'std';`) when you know your
+host compiler is new enough to build LLVM.
+
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104474.352806.patch
Type: text/x-patch
Size: 2107 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210617/2f0d3aa3/attachment-0001.bin>
More information about the Openmp-commits
mailing list