useWildLinker
pkgs.useWildLinker
Docs pulled from | This Revision | 12 minutes ago
Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.
Noogle detected
Implementation
The following is the current implementation of this function.
stdenv:
if !stdenv.targetPlatform.isLinux then
throw "Wild only supports building Linux ELF files from Linux hosts."
else
stdenv.override (prev: {
allowedRequisites = null;
cc = prev.cc.override {
bintools = prev.cc.bintools.override {
extraBuildCommands = ''
ln -fs ${pkgs.buildPackages.wild}/bin/* "$out/bin"
'';
};
};
})