cc-wrapper: fix response file parsing on ios-cross

This commit is contained in:
Ryan Trinkle 2017-07-05 15:54:45 -04:00
parent aad0ebb194
commit 754c3f6ba4
1 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,9 @@
, stdenv , stdenv
, coreutils , coreutils
, gnugrep , gnugrep
, hostPlatform, targetPlatform , buildPackages
, hostPlatform
, targetPlatform
}: }:
/* As of this writing, known-good prefix/arch/simulator triples: /* As of this writing, known-good prefix/arch/simulator triples:
@ -29,7 +31,7 @@ let
sdk = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhone${sdkType}.platform/Developer/SDKs/iPhone${sdkType}${sdkVer}.sdk"; sdk = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhone${sdkType}.platform/Developer/SDKs/iPhone${sdkType}${sdkVer}.sdk";
in (import ../../../build-support/cc-wrapper { in (import ../../../build-support/cc-wrapper {
inherit stdenv coreutils gnugrep runCommand; inherit stdenv coreutils gnugrep runCommand buildPackages;
nativeTools = false; nativeTools = false;
nativeLibc = false; nativeLibc = false;
inherit binutils; inherit binutils;