mold: clarify clang method. Closes #332

This commit is contained in:
Dylan Araps 2021-09-10 14:29:02 +03:00
parent 7b14498aad
commit b31d9d37a1
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 11 additions and 0 deletions

View File

@ -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) ---------------------------------------------------------