Skip to content
Snippets Groups Projects
Commit 4a19d4b7 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Kernel] improve warning messages

parent 1c8e6b22
No related branches found
No related tags found
No related merge requests found
...@@ -132,12 +132,12 @@ let from_filename ?cpp f = ...@@ -132,12 +132,12 @@ let from_filename ?cpp f =
else if cpp <> "" then begin else if cpp <> "" then begin
if not Fc_config.preprocessor_keep_comments then if not Fc_config.preprocessor_keep_comments then
Kernel.warning ~once:true Kernel.warning ~once:true
"Default pre-processor does not keep comments. Any ACSL annotation \ "Default preprocessor does not keep comments. Any ACSL annotations \
on non-pre-processed file will be discarded."; on non-preprocessed files will be discarded.";
NeedCPP (f, cpp, extra_for_this_file, is_cpp_gnu_like ()) NeedCPP (f, cpp, extra_for_this_file, is_cpp_gnu_like ())
end else end else
Kernel.abort "No working pre-processor found. You can only analyze \ Kernel.abort "No working preprocessor found. You can only analyze \
pre-processed .i files." preprocessed .i files."
(* ************************************************************************* *) (* ************************************************************************* *)
(** {2 Internal states} *) (** {2 Internal states} *)
...@@ -501,7 +501,7 @@ let build_cpp_cmd = function ...@@ -501,7 +501,7 @@ let build_cpp_cmd = function
Kernel.warning Kernel.warning
~once:true ~once:true
"your preprocessor is not known to handle option `%s'. \ "your preprocessor is not known to handle option `%s'. \
If pre-processing fails because of it, please add \ If preprocessing fails because of it, please add \
-no-cpp-frama-c-compliant option to Frama-C's command-line. \ -no-cpp-frama-c-compliant option to Frama-C's command-line. \
If you do not want to see this warning again, explicitly use \ If you do not want to see this warning again, explicitly use \
option -cpp-frama-c-compliant." option -cpp-frama-c-compliant."
......
[kernel] Warning: your preprocessor is not known to handle option `-nostdinc'. If pre-processing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant. [kernel] Warning: your preprocessor is not known to handle option `-nostdinc'. If preprocessing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant.
[kernel] Parsing preprocess_string.c (with preprocessing) [kernel] Parsing preprocess_string.c (with preprocessing)
/* Generated by Frama-C */ /* Generated by Frama-C */
/*@ ensures *("/*" + 0) ≡ '/'; */ /*@ ensures *("/*" + 0) ≡ '/'; */
......
[kernel] Warning: your preprocessor is not known to handle option `-nostdinc'. If pre-processing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant. [kernel] Warning: your preprocessor is not known to handle option `-nostdinc'. If preprocessing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant.
[kernel] Warning: your preprocessor is not known to handle option `-dD'. If pre-processing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant. [kernel] Warning: your preprocessor is not known to handle option `-dD'. If preprocessing fails because of it, please add -no-cpp-frama-c-compliant option to Frama-C's command-line. If you do not want to see this warning again, explicitly use option -cpp-frama-c-compliant.
[kernel] Parsing cpp-command.c (with preprocessing) [kernel] Parsing cpp-command.c (with preprocessing)
extra_args: -ITMP_MACHDEP -IFRAMAC_SHARE/libc -D__FRAMAC__ -dD -nostdinc file_extra global_extra extra_args: -ITMP_MACHDEP -IFRAMAC_SHARE/libc -D__FRAMAC__ -dD -nostdinc file_extra global_extra
[kernel] Warning: trying to preprocess annotation with an unknown preprocessor. [kernel] Warning: trying to preprocess annotation with an unknown preprocessor.
......
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