repo/extra/mold/README

128 lines
5.9 KiB
Plaintext
Raw Normal View History

2021-08-26 04:22:10 +00:00
mold
________________________________________________________________________________
mold is a multi-threaded, high-performance linker that is several times faster
than the industry-standard ones, namely, GNU ld, GNU gold or LLVM lld. It is
developed as a drop-in replacement for these linkers and command-line compatible
2021-08-21 13:09:11 +00:00
with them with a few exceptions. [0]
2021-08-21 13:09:11 +00:00
Upstream: $/rui314/mold
2021-08-21 13:09:11 +00:00
[000] Index
________________________________________________________________________________
2021-08-26 04:22:10 +00:00
* Installation ........................................................... [001]
* Setup .................................................................. [002]
2021-09-10 11:15:58 +00:00
* METHOD 1 (Compiler-agnostic) ......................................... [003]
* METHOD 2 (Clang >= 12.0) ............................................. [004]
* METHOD 3 (GCC) ....................................................... [005]
* Usage .................................................................. [006]
* Troubleshooting ........................................................ [007]
* Package Fails To Link With Mold ...................................... [008]
* References ............................................................. [009]
2021-08-21 13:09:11 +00:00
[001] Installation
________________________________________________________________________________
2021-08-21 13:09:11 +00:00
+------------------------------------------------------------------------------+
| |
| $ kiss b mold |
| |
+------------------------------------------------------------------------------+
[002] Setup
________________________________________________________________________________
2021-08-21 13:09:11 +00:00
To use mold as the system linker one of the following methods must be used.
The first solution is recommended as it removes all possibility of the prior
linker being executed by mistake.
2021-09-10 11:15:58 +00:00
--[003] METHOD 1 (Compiler-agnostic) -------------------------------------------
2021-09-10 11:15:58 +00:00
Use the alternatives system to set mold as the system linker.
2021-09-10 11:15:58 +00:00
+----------------------------------------------------------------------------+
| |
| $ kiss a mold /usr/bin/ld |
| |
+----------------------------------------------------------------------------+
2021-09-10 11:15:58 +00:00
--[004] METHOD 2 (Clang >= 12.0) -----------------------------------------------
Add --ld-path to CFLAGS/CXXFLAGS.
+----------------------------------------------------------------------------+
| |
| $ export CFLAGS="$CFLAGS --ld-path=/usr/bin/mold" |
| $ export CXXFLAGS="$CXXFLAGS --ld-path=/usr/bin/mold" |
| |
+----------------------------------------------------------------------------+
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" |
| |
+----------------------------------------------------------------------------+
2021-09-10 11:15:58 +00:00
--[005] METHOD 3 (GCC) ---------------------------------------------------------
Add -B to CFLAGS/CXXFLAGS (GCC)
+----------------------------------------------------------------------------+
| |
| $ export CFLAGS="$CFLAGS -B/usr/lib/mold" |
| $ export CXXFLAGS="$CXXFLAGS -B/usr/lib/mold" |
| |
+----------------------------------------------------------------------------+
2021-09-10 11:15:58 +00:00
[006] Usage
________________________________________________________________________________
2021-08-21 13:09:11 +00:00
Mold does not yet support all use cases. It can not be used to link the Linux
kernel (due to lack of linker script support) and It has no support for LTO
(Link Time Optimization).
With mold as the default linker, running the package manager as normal should
result in its usage. To verify that mold is being used, disable binary stripping
(KISS_STRIP=0) and run the following command on a newly built executable.
+------------------------------------------------------------------------------+
| |
| $ readelf -p .comment /path/to/exe |
| |
+------------------------------------------------------------------------------+
2021-08-21 13:09:11 +00:00
If 'mold' appears in the output, everything is setup correctly.
2021-08-21 13:09:11 +00:00
2021-09-10 11:15:58 +00:00
[007] Troubleshooting
________________________________________________________________________________
2021-08-21 13:09:11 +00:00
2021-09-10 11:15:58 +00:00
--[008] Package Fails To Link With Mold ----------------------------------------
2021-08-21 13:09:11 +00:00
If a package in the official repositories fails to link with mold, open an
issue. If a package in a third-party repository fails to link with mold, open
an issue in their tracker. If a package you maintain fails to link (and the
issue is in the linker), open an issue upstream.
2021-09-10 11:15:58 +00:00
[009] References
2021-08-21 13:09:11 +00:00
________________________________________________________________________________
[0] $/rui314/mold