plugin: switch from ld.gold to mold (cxx-qt docs recommend moving away from gold)
This commit is contained in:
parent
f34f3f2f4e
commit
4f5cf5f5fa
1 changed files with 6 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
craneLib,
|
craneLib,
|
||||||
|
mold,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
qt6,
|
qt6,
|
||||||
writeShellScript,
|
writeShellScript,
|
||||||
|
|
@ -67,6 +68,7 @@ let
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
|
mold
|
||||||
qt6.qtbase
|
qt6.qtbase
|
||||||
qt6.qtdeclarative
|
qt6.qtdeclarative
|
||||||
];
|
];
|
||||||
|
|
@ -79,8 +81,12 @@ let
|
||||||
|
|
||||||
# qt6.qtbase's setup hook overrides QMAKE after derivation attrs are set,
|
# qt6.qtbase's setup hook overrides QMAKE after derivation attrs are set,
|
||||||
# so re-assert it in preBuild which runs after all setup hooks.
|
# so re-assert it in preBuild which runs after all setup hooks.
|
||||||
|
# Force mold as the linker (cxx-qt book deprecates ld.gold). Setting via
|
||||||
|
# CARGO_TARGET_*_LINKER + RUSTFLAGS is the only path that survives nixpkgs'
|
||||||
|
# cc-wrapper - `-fuse-ld=` from build.rs gets eaten by the wrapper.
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
export QMAKE=${qmakeWrapper}
|
export QMAKE=${qmakeWrapper}
|
||||||
|
export RUSTFLAGS="-C link-arg=-fuse-ld=mold ''${RUSTFLAGS:-}"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue