mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
haskell generic-builder: Don't use absolute path to tools, and also track strip
This commit is contained in:
parent
faa4b45a1e
commit
bc066466fb
@ -111,9 +111,10 @@ let
|
||||
crossCabalFlags = [
|
||||
"--with-ghc=${ghc.targetPrefix}ghc"
|
||||
"--with-ghc-pkg=${ghc.targetPrefix}ghc-pkg"
|
||||
"--with-gcc=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"
|
||||
"--with-ld=${stdenv.cc.bintools}/bin/${stdenv.cc.bintools.targetPrefix}ld"
|
||||
"--with-hsc2hs=${nativeGhc}/bin/hsc2hs"
|
||||
"--with-gcc=${stdenv.cc.targetPrefix}cc"
|
||||
"--with-ld=${stdenv.cc.bintools.targetPrefix}ld"
|
||||
"--with-hsc2hs=${nativeGhc}/bin/hsc2hs" # not cross one
|
||||
"--with-strip=${stdenv.cc.bintools.targetPrefix}strip"
|
||||
] ++ (if isHaLVM then [] else ["--hsc2hs-options=--cross-compile"]);
|
||||
|
||||
crossCabalFlagsString =
|
||||
|
Loading…
Reference in New Issue
Block a user