Skip to content
Snippets Groups Projects
Commit 2df660f8 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

Merge branch 'fix/andre/load-plugin-error-message' into 'master'

[Kernel] avoid stacktrace and show more precise plugin loading error message

See merge request frama-c/frama-c!4754
parents 6731330b 8b7b6949
No related branches found
No related tags found
No related merge requests found
......@@ -56,9 +56,27 @@ module Plugins = struct
let load name =
Config_data.Plugins.Plugins.load name
let try_load_list load list =
let list = list () in
List.iter (fun p ->
try
load p
with e ->
(* We don't have access to Kernel's log mechanisms here. *)
Format.printf "Warning: failed to load plugin '%s' (exception: %s)@."
p (Printexc.to_string e);
Format.printf " Try recompiling it or \
completely removing it from the plug-in load path:@.";
List.iter (fun path -> Format.printf " %s@." path)
Config_data.Plugins.Plugins.paths
) list
let load_all () =
if is_gui then Config_data.Plugins.Plugins_gui.load_all ();
Config_data.Plugins.Plugins.load_all ()
(* avoid calling Dune_site.Plugins.load_all () directly, so we can catch
errors individually *)
let open Config_data.Plugins in
if is_gui then try_load_list Plugins_gui.load Plugins_gui.list;
try_load_list Plugins.load Plugins.list
end
module Preprocessor = struct
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment