GitXplorerGitXplorer
r

setup-mold

public
120 stars
10 forks
3 issues

Commits

List of commits on branch main.
Unverified
f80524ca6eeaa76759b57fb78ddce5d87a20c720

Update default version to 2.36.0

aactions-user committed 9 days ago
Unverified
8ec40be1d14871f7ce8fbf273c4b33f3ff75f1d1

Update default version to 2.35.1

aactions-user committed a month ago
Unverified
bac87d5a5820d626ba77131fbbfbce77faf03b6e

Update default version to 2.35.0

aactions-user committed a month ago
Unverified
b015f7e3f2938ad3a5ed6e5111a8c6c7c1d6db6e

Update default version to 2.34.1

rrui314 committed 3 months ago
Unverified
c49f92ee787f4e2bba3330d01755ef8c7221699a

Update default version to 2.34.0

aactions-user committed 4 months ago
Unverified
0bf4f07ef9048ec62a45f9dbf2f098afa49695f0

Update default version to 2.33.0

aactions-user committed 5 months ago

README

The README file for this repository.

This action downloads and installs the mold linker as the default linker.

Usage

Just add the following line to the steps: list in your GitHub Action YAML file:

- uses: rui314/setup-mold@v1

You can optionally pass parameters to the action as follows:

- uses: rui314/setup-mold@v1
  with:
    mold-version: 1.1.1
    make-default: false

mold-version specifies the mold version to install. By default, the most recent version will be installed.

If make-default: false is specified, mold will still be installed as /usr/local/bin/mold but it won't replace the default linker. If you choose not to install mold as the default linker, you need to pass an appropriate option such as -fuse-ld=mold to the compiler to use mold.