We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1640390 commit a41cd51Copy full SHA for a41cd51
.github/workflows/build.yml
@@ -29,18 +29,21 @@ jobs:
29
os: ubuntu-24.04
30
cc: gcc-14
31
cxx: g++-14
32
- packages: g++-14 libfmt-dev
+ ldflags: -fuse-ld=mold
33
+ packages: g++-14 mold libfmt-dev
34
meson_options:
35
- compiler: gcc11
36
os: ubuntu-22.04
37
cc: gcc-11
38
cxx: g++-11
39
+ ldflags:
40
packages: g++-11
41
meson_options: --force-fallback-for=fmt
42
- compiler: gcc10
43
44
cc: gcc-10
45
cxx: g++-10
46
47
packages: g++-10
48
49
@@ -49,6 +52,7 @@ jobs:
52
env:
50
53
CC: ccache ${{ matrix.cc }}
51
54
CXX: ccache ${{ matrix.cxx }}
55
+ LDFLAGS: ${{ matrix.ldflags }}
56
57
steps:
58
- id: checkout
0 commit comments