Skip to content

Commit

Permalink
Add instructions for fixing deadlock errors (elixir-lang#7750)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj authored Jun 14, 2018
1 parent 071c41b commit 1c5ed38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/elixir/lib/kernel/parallel_compiler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,10 @@ defmodule Kernel.ParallelCompiler do
IO.puts([" ", String.pad_leading(file, max), " => " | inspect(mod)])
end

IO.puts("")
IO.puts(
"\nEnsure there are no compile-time dependencies between those files " <>
"and that the modules they reference exist and are correctly named.\n"
)

for {file, _, description} <- deadlock, do: {Path.absname(file), nil, description}
end
Expand Down

0 comments on commit 1c5ed38

Please sign in to comment.