[llvm] [llvm][docs] Improve the formatting of the Common Problems section (PR #108522)
Tobias Hieta via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 7 02:40:57 PDT 2024
================
@@ -1085,67 +1085,88 @@ general questions about LLVM, please consult the `Frequently Asked
Questions <FAQ.html>`_ page.
If you are having problems with limited memory and build time, please try
-building with ninja instead of make. Please consider configuring the
+building with ``ninja`` instead of ``make``. Please consider configuring the
following options with cmake:
- * -G Ninja
+ * ``-G Ninja``
+
Setting this option will allow you to build with ninja instead of make.
Building with ninja significantly improves your build time, especially with
incremental builds, and improves your memory usage.
- * -DLLVM_USE_LINKER
- Setting this option to lld will significantly reduce linking time for LLVM
+ * ``-DLLVM_USE_LINKER``
+
+ Setting this option to ``lld`` will significantly reduce linking time for LLVM
executables on ELF-based platforms, such as Linux. If you are building LLVM
----------------
tru wrote:
This is also true on Windows, not really on macOS any longer with the introduction of ld-prime, but it's just not linux.
https://github.com/llvm/llvm-project/pull/108522
More information about the llvm-commits
mailing list