Skip to content
Snippets Groups Projects
Commit 5a7fb468 authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

do not set -json-compilation-database when Yojson is not present

parent d2c652b4
No related branches found
No related tags found
No related merge requests found
...@@ -61,6 +61,7 @@ $(CONFIG_FILE): $(CONFIG_FILE).in VERSION share/Makefile.config Makefile.generat ...@@ -61,6 +61,7 @@ $(CONFIG_FILE): $(CONFIG_FILE).in VERSION share/Makefile.config Makefile.generat
-e "s|@COMPILATION_UNITS@|$(COMPILATION_UNITS)|" \ -e "s|@COMPILATION_UNITS@|$(COMPILATION_UNITS)|" \
-e "s|@LIBRARY_NAMES@|$(foreach p,$(ALL_LIBRARY_NAMES),\"$p\";)|" \ -e "s|@LIBRARY_NAMES@|$(foreach p,$(ALL_LIBRARY_NAMES),\"$p\";)|" \
-e "s|@OPTDOT@|$(OPTDOT)|" \ -e "s|@OPTDOT@|$(OPTDOT)|" \
-e "s|@HAS_YOJSON@|$(if $(filter yes,$(HAS_YOJSON)),true,false)|" \
-e "s|@EXE@|$(EXE)|" \ -e "s|@EXE@|$(EXE)|" \
$< > $@.tmp $< > $@.tmp
@touch -r $@.tmp $< @touch -r $@.tmp $<
......
...@@ -78,4 +78,6 @@ let preprocessor_keep_comments = ...@@ -78,4 +78,6 @@ let preprocessor_keep_comments =
let compilation_unit_names = [@COMPILATION_UNITS@] let compilation_unit_names = [@COMPILATION_UNITS@]
let library_names = [@LIBRARY_NAMES@] let library_names = [@LIBRARY_NAMES@]
let has_yojson = @HAS_YOJSON@
let dot = @OPTDOT@ let dot = @OPTDOT@
...@@ -104,6 +104,11 @@ val dot: string option ...@@ -104,6 +104,11 @@ val dot: string option
@return [None] if `dot' is not installed. @return [None] if `dot' is not installed.
@since Carbon-20101201 *) @since Carbon-20101201 *)
val has_yojson: bool
(** [true] if Frama-C has been compiled with yojson support.
@since Frama-C+dev
*)
(* (*
Local Variables: Local Variables:
compile-command: "make -C ../../.." compile-command: "make -C ../../.."
......
...@@ -21,9 +21,14 @@ ...@@ -21,9 +21,14 @@
(**************************************************************************) (**************************************************************************)
let get_flags _ = let get_flags _ =
if Kernel.JsonCompilationDatabase.get () <> "" then begin let db = Kernel.JsonCompilationDatabase.get () in
Kernel.warning ~once:true "ignoring option %s: Frama-C was not compiled \ if db <> "" then begin
with the required libraries (yojson)" (* If Yojson is disabled, JsonCompilationDatabase prevents any attempt
Kernel.JsonCompilationDatabase.option_name; to set the option to a non-empty string. If someone bypasses the
mechanism with an unsafe_set, they deserve a fatal error.
*)
Kernel.fatal
"Attempt to parse json compilation database %s \
with a Frama-C compiled without Yojson support." db
end; end;
"" ""
...@@ -864,14 +864,27 @@ module JsonCompilationDatabase = ...@@ -864,14 +864,27 @@ module JsonCompilationDatabase =
let option_name = "-json-compilation-database" let option_name = "-json-compilation-database"
let default = "" let default = ""
let arg_name = "path" let arg_name = "path"
let help = "when set, preprocessing of each file will include \ let help =
corresponding flags (e.g. -I, -D) from the JSON compilation \ if Fc_config.has_yojson then
database specified by <path>. If <path> is a directory, \ "when set, preprocessing of each file will include corresponding \
use '<path>/compile_commands.json'. Disabled by default. \ flags (e.g. -I, -D) from the JSON compilation database \
NOTE: this requires Frama-C to have been compiled with \ specified by <path>. If <path> is a directory, use \
yojson support." '<path>/compile_commands.json'. Disabled by default. \
NOTE: this requires Frama-C to be compiled with yojson support."
else
"Unsupported: recompile Frama-C with Yojson library to enable it"
end) end)
let () =
if not Fc_config.has_yojson then begin
JsonCompilationDatabase.add_set_hook
(fun _ _ ->
warning ~once:true
"trying to set -json-compilation-database even though Yojson \
is not available. Ignoring argument.";
JsonCompilationDatabase.clear ())
end
(* ************************************************************************* *) (* ************************************************************************* *)
(** {2 Customizing Normalization} *) (** {2 Customizing Normalization} *)
(* ************************************************************************* *) (* ************************************************************************* *)
......
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