Skip to content

Tags: oxcaml/oxcaml

Tags

5.2.0minus-40

Toggle 5.2.0minus-40's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Revert "Revert "Revert "Fix bug in meet for array element kinds (#577… (

#6220)

Revert "Revert "Revert "Fix bug in meet for array element kinds (#5771)" (#61… (#6155)"

This reverts commit 231f2b8.

5.2.0minus-39

Toggle 5.2.0minus-39's commit message
Revert "Fix bug in meet for array element kinds (#5771)" (#6133)

This reverts commit fa3e7c1.

(cherry picked from commit c646727)

5.2.0minus-38

Toggle 5.2.0minus-38's commit message
Workaround for high CPU usage caused by libraries that hook epoll_wai…

…t (attempt 2) (#6016)

Set tick_use_usleep if onload_is_present is found

(cherry picked from commit 7788c7f)

5.2.0minus-37

Toggle 5.2.0minus-37's commit message
Bump magic number for 5.2.0minus-37 (#5868)

5.2.0minus-36

Toggle 5.2.0minus-36's commit message
additional compactions in the dissector

5.2.0minus-35

Toggle 5.2.0minus-35's commit message
additional compactions in the dissector

(cherry picked from commit 5c1f950)

5.2.0minus-34

Toggle 5.2.0minus-34's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
`with kind` annotations should be scanned by ocamldep (#5628)

with kind annotations should be scanned by ocamldep

5.2.0minus-33

Toggle 5.2.0minus-33's commit message
Enable llvm-mc and avoid stripping debug info (#5571)

enable llvm-mc and avoid stripping debug info

(cherry picked from commit 7326c85)

5.2.0minus-32

Toggle 5.2.0minus-32's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
Bump magic numbers for 5.2.0minus-32 (#5500)

Co-authored-by: James Rayman <james@jamesrayman.com>

5.2.0minus-31

Toggle 5.2.0minus-31's commit message

Verified

This commit was signed with the committer’s verified signature.
jamesrayman James Rayman
Fix locations given to ident in `let%xyz ident in ..`

This fixes a regression introduced in #5392, which adds the `let poly_`
syntax. Adding `poly_flag` to the let-pun case of `let_binding_body`
means `$loc` includes `poly_flag`, so `$loc($2)` should be passed to
`mkpatvar` and `ghexpvar` instead.

Unlike `rec` and `mutable`, the `poly_` flag is attached to idents
rather than let bindings. For example, `let%map poly_ x and poly_ y in ..`
is valid syntax, but `let%map rec x and rec y in ..` is not. Hence why
`poly_` is parsed in a differently from `rec` and `mutable`.