stdenv: Pass standalone argument for libcxxabi

authored by

toonn and committed by
Jonathan Ringer
5d23e617 21df776a

+1 -1
+1 -1
pkgs/stdenv/darwin/default.nix
··· 469 }; 470 libcxxabi = libSuper.libcxxabi.override ({ 471 stdenv = overrideCC self.stdenv self.ccNoLibcxx; 472 - } // lib.optionalAttrs (finalLlvmVersion == "7") { 473 # TODO: the bootstrapping of llvm packages isn't consistent. 474 # `standalone` may be redundant if darwin behaves like useLLVM (or 475 # has useLLVM = true).
··· 469 }; 470 libcxxabi = libSuper.libcxxabi.override ({ 471 stdenv = overrideCC self.stdenv self.ccNoLibcxx; 472 + } // lib.optionalAttrs (builtins.any (v: finalLlvmVersion == v) [ 7 11 12 13 ]) { 473 # TODO: the bootstrapping of llvm packages isn't consistent. 474 # `standalone` may be redundant if darwin behaves like useLLVM (or 475 # has useLLVM = true).