Unverified Commit c748544b authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #241206 from amjoseph-nixpkgs/tighten-inhibit_libc-condition

parents 25c3b030 926c920c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -119,7 +119,10 @@ in lib.optionalString (hostPlatform.isSunOS && hostPlatform.is64bit) ''
# gcc->clang "cross"-compilation manages to evade it: there
# hostPlatform != targetPlatform, hostPlatform.config == targetPlatform.config.
# We explicitly inhibit libc headers use in this case as well.
+ lib.optionalString (targetPlatform != hostPlatform && withoutTargetLibc) ''
+ lib.optionalString (targetPlatform != hostPlatform &&
                      withoutTargetLibc &&
                      targetPlatform.config == hostPlatform.config &&
                      (stdenv.cc.isClang || stdenv.targetPlatform.useLLVM)) ''
  export inhibit_libc=true
''