From b31d9d37a1db324e522ecc3109149b1be80df5ad Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 10 Sep 2021 14:29:02 +0300 Subject: [PATCH] mold: clarify clang method. Closes #332 --- extra/mold/README | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/extra/mold/README b/extra/mold/README index 0a166b44..2e29a7c6 100644 --- a/extra/mold/README +++ b/extra/mold/README @@ -63,6 +63,17 @@ linker being executed by mistake. | | +----------------------------------------------------------------------------+ + In addition to --ld-path, the following may also be needed. Please NOTE the + implications of this warning suppression and why METHOD 1 may be the best + solution to this problem. + + +----------------------------------------------------------------------------+ + | | + | $ export CFLAGS="$CFLAGS -Wno-unused-command-line-argument" | + | $ export CXXFLAGS="$CXXFLAGS -Wno-unused-command-line-argument" | + | | + +----------------------------------------------------------------------------+ + --[005] METHOD 3 (GCC) ---------------------------------------------------------