mold icon indicating copy to clipboard operation
mold copied to clipboard

Mold: A Modern Linker 🦠

Results 273 mold issues
Sort by recently updated
recently updated
newest added

Correct path is listed [here](https://nim-lang.org/docs/nimc.html#compiler-usage-configuration-files) (See number 2). While it says `nim.cfg` in the docs, `config.nims` is the correct file for this purpose

After configuring Mold in `.cargo/config.toml` (with clang) my code had to compile twice for some reason. I ran `cargo build` the first time - everything compiled. Then the second time...

Add dependabot support to keep GitHub Actions and Docker up to date. I will submit a separate PR to convert workflows to use commit hashes.

Build on Ubuntu 22, with GCC version 11.3.0 and the latest stable release of mold (mold 1.11.0) -fsanitize=address It works well if removed.

The [mold docs](https://github.com/rui314/mold/blob/main/docs/mold.md) say: >Mold is designed to be a drop-in replacement for the GNU linkers for linking user-land programs. If your user-land program cannot be built due to missing...

I am using mold to build my unit tests locally and everything is working fine. The cross-compiler we use has recently been updated to the 12.2.1 version of GCC. When...

I was following the steps to compile Mold ``` git clone https://github.com/rui314/mold.git mkdir mold/build cd mold/build git checkout v2.2.0 ../install-build-deps.sh cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=c++ .. cmake --build . -j $(nproc) sudo...

The actual reason I stumbled across mold was, somehow, searching for information about linker scripts. (Specifically, I was searching in the context of there seemingly not existing anything for generating...

When building embedded firmware printing the memory usage is often very beneficial. When I try to use mold with the `arm-none-eabi-gcc` compiler with the flag `--print-memory-usage` I get the error...