cc-wrapper: fix response file parsing on ios-cross
This commit is contained in:
parent
aad0ebb194
commit
754c3f6ba4
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue