Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

llvmPackages: 11 -> 16 on Darwin and Linux #241692

Merged
merged 2 commits into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16641,10 +16641,10 @@ with pkgs;
# This returns the minimum supported version for the platform. The
# assumption is that or any later version is good.
choose = platform:
/**/ if platform.isDarwin then 11
/**/ if platform.isDarwin then 16
else if platform.isFreeBSD then 12
else if platform.isAndroid then 12
else if platform.isLinux then 11
else if platform.isLinux then 16
else if platform.isWasm then 12
else 14;
# We take the "max of the mins". Why? Since those are lower bounds of the
Expand Down