Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ stdenv.mkDerivation (finalAttrs: {
+ lib.optionalString (lib.versionAtLeast release_version "14") ''
cp -r ${monorepoSrc}/cmake "$out"
''
# Needs "libcxx/utils/merge_archives.py"
+ lib.optionalString (lib.versions.major release_version == "13") ''
cp -r ${monorepoSrc}/libcxx "$out"
''
Comment on lines +65 to +68
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this previously being injected by override or something? I’m not seeing it in this PR.

I’m dropping LLVM 12–17 this week, so I don’t think we need to spend time fixing existing issues with LLVM 13 (and it goes against making this zero rebuilds).

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure, that's what confused me.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, now I know what it is. llvmPackages.compiler-rt.src was literally the entire Git repo shoved in and not this special one we generate here.

+ lib.optionalString (lib.versionAtLeast release_version "21") ''
cp -r ${monorepoSrc}/third-party "$out"
''
Expand Down
Loading
Loading