Skip to content

Commit c1738fa

Browse files
committed
Merge main into toolchains
Signed-off-by: Stephen Sherratt <[email protected]>
2 parents bf03c80 + eee9a67 commit c1738fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+779
-377
lines changed

.github/workflows/binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: cachix/install-nix-action@v22
29-
- run: nix build ${{ installable }}
29+
- run: nix build ${{ matrix.installable }}
3030
- uses: actions/upload-artifact@v4
3131
with:
3232
path: result/bin/dune

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ install-ocamlformat:
7474
dev-depext:
7575
opam depext -y $(TEST_DEPS)
7676

77-
# v4-414-dev
77+
# branch v4-414-for-dune
7878
.PHONY: melange
7979
melange:
80-
opam pin add -n melange.dev https://github.com/melange-re/melange.git#24e21cc42
80+
opam pin add -n melange.dev https://github.com/melange-re/melange.git#ab48cfcfe5f2c0ca4a4a4fcafceb73b95c2acb1d
8181

8282
.PHONY: dev-deps
8383
dev-deps: melange

bin/install_uninstall.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ module File_ops_real (W : sig
204204
open W
205205

206206
let print_line = print_line ~verbosity
207-
let get_vcs p = Dune_rules.Vcs_db.nearest_vcs p
207+
let get_vcs p = Source_tree.nearest_vcs p
208208

209209
type copy_special_file_status =
210210
| Done

boot/bootstrap.ml

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@ open Printf
66

77
let min_supported_natively = 4, 08, 0
88

9-
let _verbose, keep_generated_files, _debug =
9+
let keep_generated_files =
1010
let anon s = raise (Arg.Bad (sprintf "don't know what to do with %s\n" s)) in
11-
let verbose = ref false in
1211
let keep_generated_files = ref false in
13-
let debug = ref false in
1412
Arg.parse
1513
[ "-j", Arg.Int ignore, "JOBS Concurrency"
16-
; "--verbose", Arg.Set verbose, " Set the display mode"
14+
; "--verbose", Arg.Unit ignore, " Set the display mode"
1715
; "--keep-generated-files", Arg.Set keep_generated_files, " Keep generated files"
18-
; "--debug", Arg.Set debug, " Enable various debugging options"
16+
; "--debug", Arg.Unit ignore, " Enable various debugging options"
1917
; ( "--force-byte-compilation"
2018
, Arg.Unit ignore
2119
, " Force bytecode compilation even if ocamlopt is available" )
20+
; "--static", Arg.Unit ignore, " Build a static binary"
2221
]
2322
anon
2423
"Usage: ocaml bootstrap.ml <options>\nOptions are:";
25-
!verbose, !keep_generated_files, !debug
24+
!keep_generated_files
2625
;;
2726

2827
let modules = [ "boot/libs"; "boot/duneboot" ]

boot/duneboot.ml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
11
(** {2 Command line} *)
22

3-
let concurrency, verbose, _keep_generated_files, debug, secondary, force_byte_compilation =
3+
let concurrency, verbose, debug, secondary, force_byte_compilation, static =
44
let anon s = raise (Arg.Bad (Printf.sprintf "don't know what to do with %s\n" s)) in
55
let concurrency = ref None in
66
let verbose = ref false in
7-
let keep_generated_files = ref false in
87
let prog = Filename.basename Sys.argv.(0) in
98
let debug = ref false in
109
let secondary = ref false in
1110
let force_byte_compilation = ref false in
11+
let static = ref false in
1212
Arg.parse
1313
[ "-j", Int (fun n -> concurrency := Some n), "JOBS Concurrency"
1414
; "--verbose", Set verbose, " Set the display mode"
15-
; "--keep-generated-files", Set keep_generated_files, " Keep generated files"
15+
; "--keep-generated-files", Unit ignore, " Keep generated files"
1616
; "--debug", Set debug, " Enable various debugging options"
1717
; "--secondary", Set secondary, " Use the secondary compiler installation"
1818
; ( "--force-byte-compilation"
1919
, Set force_byte_compilation
2020
, " Force bytecode compilation even if ocamlopt is available" )
21+
; "--static", Set static, " Build a static binary"
2122
]
2223
anon
2324
(Printf.sprintf "Usage: %s <options>\nOptions are:" prog);
24-
( !concurrency
25-
, !verbose
26-
, !keep_generated_files
27-
, !debug
28-
, !secondary
29-
, !force_byte_compilation )
25+
!concurrency, !verbose, !debug, !secondary, !force_byte_compilation, !static
3026
;;
3127

3228
(** {2 General configuration} *)
@@ -1129,6 +1125,7 @@ let build
11291125
| ".ml" -> Some (Filename.remove_extension fn ^ compiled_ml_ext)
11301126
| _ -> None)
11311127
in
1128+
let static_flags = if static then [ "-ccopt"; "-static" ] else [] in
11321129
write_args "compiled_ml_files" compiled_ml_files;
11331130
Process.run
11341131
~cwd:build_dir
@@ -1138,6 +1135,7 @@ let build
11381135
; obj_files
11391136
; [ "-args"; "compiled_ml_files" ]
11401137
; link_flags
1138+
; static_flags
11411139
; allow_unstable_sources
11421140
])
11431141
;;

doc/changes/10525.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Fix incorrect warning for libraries defined inside non-existant directories
2+
using `(subdir ..)` and used by executables using `dune-build-info` (#10525,
3+
@rgrinberg)

doc/reference/dune-project/dialect.rst

+12
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,18 @@ dialect
6666

6767
.. versionchanged:: 3.9 This field is made optional.
6868

69+
.. describe:: (merlin_reader <program> <args>...)
70+
71+
Configure Merlin to use `<program> <args>...` as READER. Merlin's READER
72+
is a mechanism to extend Merlin to support OCaml dialects by providing
73+
a program that transforms a dialect AST into an OCaml AST.
74+
75+
.. seealso:: `merlin/src/extend/extend_protocol.ml <https://github.com/ocaml/merlin/blob/4.14-502_preview2/src/extend/extend_protocol.ml>`_ for the protocol specification.
76+
77+
This field is optional.
78+
79+
.. versionadded:: 3.16
80+
6981

7082
Default dialects
7183
----------------

flake.lock

+56-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+3-9
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
inputs.flake-utils.follows = "flake-utils";
99
};
1010
melange = {
11-
# When moving the compiler tests to OCaml 5.1, change to v4-51-dev
12-
url = "github:melange-re/melange?rev=24e21cc4284ffb18b3a856c1d730f06f34d32737";
11+
# branch v4-414-for-dune
12+
url = "github:melange-re/melange?rev=ab48cfcfe5f2c0ca4a4a4fcafceb73b95c2acb1d";
1313
inputs.nixpkgs.follows = "nixpkgs";
1414
inputs.flake-utils.follows = "flake-utils";
1515
};
@@ -47,13 +47,7 @@
4747
ocamlPackages = super.ocaml-ng.ocamlPackages_4_14.overrideScope (oself: osuper: {
4848
dune_3 = osuper.dune_3.overrideAttrs (a: {
4949
src = ./.;
50-
postPatch = ''
51-
substituteInPlace \
52-
boot/duneboot.ml \
53-
--replace-fail \
54-
'; link_flags' \
55-
'; link_flags; ["-ccopt"; "-static"]'
56-
'';
50+
preBuild = "ocaml boot/bootstrap.ml --static";
5751
});
5852
});
5953
};

src/dune_lang/package_variable_name.ml

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ let opam_version = of_string "opam-version"
4545
let sys_ocaml_version = of_string "sys-ocaml-version"
4646
let with_test = of_string "with-test"
4747
let with_doc = of_string "with-doc"
48+
let with_dev_setup = of_string "with-dev-setup"
4849
let version = of_string "version"
4950
let name = of_string "name"
5051
let build = of_string "build"

src/dune_lang/package_variable_name.mli

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ val os_family : t
2323
val opam_version : t
2424
val with_test : t
2525
val with_doc : t
26+
val with_dev_setup : t
2627
val sys_ocaml_version : t
2728
val name : t
2829
val version : t

src/dune_pkg/opam_solver.ml

+14-7
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,17 @@ let available_depopts solver_env version_by_package_name (opam_package : OpamFil
537537
else None))
538538
;;
539539

540+
(* Heuristic to determine whether a package is an ocaml compiler *)
541+
let opam_file_is_compiler (opam_package : OpamFile.OPAM.t) =
542+
(* Identify compiler packages by using the fact that all compiler
543+
Packages declare conflicts with other compiler packages. note
544+
that relying on the "compiler" flag to identify compiler packages
545+
will not work, as compiler options packages (such as
546+
ocaml-option-flambda) also have this flag. *)
547+
let ocaml_core_compiler = OpamPackage.Name.of_string "ocaml-core-compiler" in
548+
List.mem opam_package.conflict_class ocaml_core_compiler ~equal:OpamPackage.Name.equal
549+
;;
550+
540551
let opam_package_to_lock_file_pkg
541552
solver_env
542553
stats_updater
@@ -569,7 +580,7 @@ let opam_package_to_lock_file_pkg
569580
(* opam discards the later checksums, so we only take the first one *)
570581
| checksum :: _ -> Some (Loc.none, Checksum.of_opam_hash checksum)
571582
in
572-
Source.Fetch { Source.url; checksum } ))
583+
{ Source.url; checksum } ))
573584
in
574585
let info =
575586
let url = OpamFile.OPAM.url opam_file in
@@ -581,7 +592,7 @@ let opam_package_to_lock_file_pkg
581592
|> Option.map ~f:(fun hash -> Loc.none, Checksum.of_opam_hash hash)
582593
in
583594
let url = Loc.none, OpamFile.URL.url url in
584-
Source.Fetch { url; checksum })
595+
{ Source.url; checksum })
585596
in
586597
let dev =
587598
Package_name.Set.mem pinned_package_names name
@@ -676,11 +687,7 @@ let opam_package_to_lock_file_pkg
676687
let exported_env =
677688
OpamFile.OPAM.env opam_file |> List.map ~f:opam_env_update_to_env_update
678689
in
679-
let kind =
680-
if List.mem (OpamFile.OPAM.flags opam_file) ~equal:Poly.equal Pkgflag_Compiler
681-
then `Compiler
682-
else `Non_compiler
683-
in
690+
let kind = if opam_file_is_compiler opam_file then `Compiler else `Non_compiler in
684691
kind, { Lock_dir.Pkg.build_command; install_command; depends; info; exported_env }
685692
;;
686693

0 commit comments

Comments
 (0)