wrapBintoolsWith: Allow overriding extraBuildCommands
This commit is contained in:
parent
60771af5b6
commit
b1a8894a1c
@ -6916,15 +6916,14 @@ with pkgs;
|
|||||||
libc = if targetPlatform != hostPlatform then libcCross else stdenv.cc.libc;
|
libc = if targetPlatform != hostPlatform then libcCross else stdenv.cc.libc;
|
||||||
};
|
};
|
||||||
|
|
||||||
wrapBintoolsWith = { bintools, libc }: bintoolsWrapperFun {
|
wrapBintoolsWith = { bintools, libc, extraBuildCommands ? "" }: bintoolsWrapperFun {
|
||||||
nativeTools = targetPlatform == hostPlatform && stdenv.cc.nativeTools or false;
|
nativeTools = targetPlatform == hostPlatform && stdenv.cc.nativeTools or false;
|
||||||
nativeLibc = targetPlatform == hostPlatform && stdenv.cc.nativeLibc or false;
|
nativeLibc = targetPlatform == hostPlatform && stdenv.cc.nativeLibc or false;
|
||||||
nativePrefix = stdenv.cc.nativePrefix or "";
|
nativePrefix = stdenv.cc.nativePrefix or "";
|
||||||
|
|
||||||
noLibc = (libc == null);
|
noLibc = (libc == null);
|
||||||
|
|
||||||
inherit bintools libc;
|
inherit bintools libc extraBuildCommands;
|
||||||
extraBuildCommands = "";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# prolog
|
# prolog
|
||||||
|
Loading…
Reference in New Issue
Block a user