First alpha for OCaml 5.5.0#29462
Merged
raphael-proust merged 3 commits intoocaml:masterfrom Feb 26, 2026
Merged
Conversation
Explicitly installing compiler-cloning.disabled prevents the Relocatable OCaml from using or being used as caches. The compiler in such switches is always built from sources.
Member
Author
|
gentle ping? |
| license: "CC0-1.0+" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam-repository/issues" | ||
| flags: avoid-version |
Contributor
There was a problem hiding this comment.
that's to make enabled the default, right?
Member
There was a problem hiding this comment.
enabled would normally be default anyway (since enabled > disabled) but the flag means it’s also selected if doing lowerbounds solving
| depends: [ | ||
| # This is OCaml 5.5.0 | ||
| "ocaml" {= "5.5.0" & post} | ||
| "compiler-cloning" {= "disabled"} |
Contributor
There was a problem hiding this comment.
what's the reason for this?
not blocking, just want to know for understanding this and future PRs
Member
There was a problem hiding this comment.
The trunk compiler doesn’t support being relocated because it’s pinned (the build-id rules it out as there’s no checksum in the url), and this just makes it explicit.
Contributor
There was a problem hiding this comment.
ah right 5.5 is for the 5.5 branch…
thanks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The first commit adds the three packages for the first alpha release of OCaml 5.5.0 .
The second and third commit contributed by @dra27 adds support for cloning compiler switch (controlled by a new meta-package
compiler-cloning).