Merge pull request #53065 from matthewbauer/rpi-cross-fixes

Raspberry Pi cross compilation branch
This commit is contained in:
Matthew Bauer
2019-01-03 15:34:31 -06:00
committed by GitHub
11 changed files with 18 additions and 42 deletions

View File

@@ -11,10 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n";
};
# for cross-compiling we need pcre.dev in nativeBuildInputs to get pcre-config
nativeBuildInputs = [ autoconf automake libtool bison pcre.dev ];
disallowedReferences = [ buildPackages.pcre.dev ];
PCRE_CONFIG = "${pcre.dev}/bin/pcre-config";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ pcre ];
configureFlags = [ "--without-tcl" ];