Merge pull request #304083 from wegank/mold-clang-16-3

mold: unpin stdenv on darwin
This commit is contained in:
Weijia Wang 2024-04-15 02:44:49 +02:00 committed by GitHub
commit c86b91cbf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -19302,7 +19302,7 @@ with pkgs;
modd = callPackage ../development/tools/modd { };
mold = callPackage ../development/tools/mold {
stdenv = if stdenv.isDarwin then overrideLibcxx darwin.apple_sdk_11_0.llvmPackages_16.stdenv else stdenv;
stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv;
tbb = tbb_2021_11;
};