Merge pull request #98870 from sorki/hask/ghc8102Binary-numactl
ghc8102Binary: add numactl to libPath on aarch64
This commit is contained in:
commit
db06536e15
@ -1,6 +1,6 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl, perl, gcc
|
, fetchurl, perl, gcc
|
||||||
, ncurses6, gmp, glibc, libiconv
|
, ncurses6, gmp, glibc, libiconv, numactl
|
||||||
, llvmPackages
|
, llvmPackages
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
@ -13,7 +13,8 @@ let
|
|||||||
|
|
||||||
libPath = stdenv.lib.makeLibraryPath ([
|
libPath = stdenv.lib.makeLibraryPath ([
|
||||||
ncurses6 gmp
|
ncurses6 gmp
|
||||||
] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
|
] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv
|
||||||
|
++ stdenv.lib.optional (stdenv.hostPlatform.isAarch64) numactl);
|
||||||
|
|
||||||
libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
|
libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
|
||||||
+ "LD_LIBRARY_PATH";
|
+ "LD_LIBRARY_PATH";
|
||||||
|
Loading…
Reference in New Issue
Block a user