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

Modularise Olly #43

Merged
merged 6 commits into from
Apr 18, 2024
Merged
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
24 changes: 9 additions & 15 deletions bin/dune
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
(executable
(package runtime_events_tools)
(public_name olly)
(name olly)
(modules olly olly_custom_events)
(libraries runtime_events unix hdr_histogram cmdliner tracing))
(modules olly)
(libraries olly_trace olly_gc_stats olly_format_json olly_format_fuchsia))

(rule
(target olly_custom_events.ml)
(enabled_if
(>= %{ocaml_version} 5.1.0))
(action
(copy olly_custom_events.yes.ml %{target})))

(rule
(target olly_custom_events.ml)
(enabled_if
(< %{ocaml_version} 5.1.0))
(action
(copy olly_custom_events.no.ml %{target})))
(executable
(package runtime_events_tools_bare)
(public_name olly_bare)
(name olly_bare)
(modules olly_bare)
(libraries olly_trace olly_format_json))
Loading
Loading