Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mirage/mirage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 54c8366ab656
Choose a base ref
...
head repository: mirage/mirage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b0bccd7a01b2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 1, 2015

  1. Verified

    This commit was signed with the committer’s verified signature.
    bendevnull bendevnull
    Copy the full SHA
    89b1c97 View commit details

Commits on Jun 2, 2015

  1. Merge pull request #408 from lnmx/target-info

    Misleading "Compiling for target" message from `mirage build`
    samoht committed Jun 2, 2015
    Copy the full SHA
    b0bccd7 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/mirage.ml
2 changes: 1 addition & 1 deletion lib/mirage.ml
Original file line number Diff line number Diff line change
@@ -2325,6 +2325,7 @@ let clean_main t =

let configure t =
info "%s %s" (blue_s "Using configuration:") (get_config_file ());
info "%s %s" (blue_s "Configuring for target:") (string_of_mode !mode);
info "%d job%s [%s]"
(List.length t.jobs)
(if List.length t.jobs = 1 then "" else "s")
@@ -2403,7 +2404,6 @@ let load file =
let file = scan_conf file in
let root = realpath (Filename.dirname file) in
let file = root / Filename.basename file in
info "%s %s" (blue_s "Compiling for target:") (string_of_mode !mode);
set_config_file file;
compile_and_dynlink file;
let t = registered () in