aboutsummaryrefslogtreecommitdiffstats
path: root/_tags
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2014-10-24 18:09:12 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2014-10-24 18:09:12 +0200
commita49d3b267754eae6036e0c03e48bff7e1c028a58 (patch)
tree57adee99aff6e9afbe1dbb18ca4e1e7809466abf /_tags
parentc4746b43f5d035d26d1d0c3bb0164f00544889e4 (diff)
downloadcompcert-a49d3b267754eae6036e0c03e48bff7e1c028a58.tar.gz
compcert-a49d3b267754eae6036e0c03e48bff7e1c028a58.zip
Tune behavior wrt warnings:
- cchecklink was compiled with -warn-error, which is bad for production code - silence warning 3 (deprecated functions) - silence warning 20 (unused function argument) for Coq-extracted files.
Diffstat (limited to '_tags')
-rw-r--r--_tags4
1 files changed, 3 insertions, 1 deletions
diff --git a/_tags b/_tags
index 8f6d58ac..0d83f2fa 100644
--- a/_tags
+++ b/_tags
@@ -3,5 +3,7 @@ true: use_menhir
<**/*.native>: debug
<driver/Driver.*{byte,native}>: use_unix,use_str
<exportclight/Clightgen.*{byte,native}>: use_unix,use_str
-<checklink/*.ml>: pkg_bitstring,warn_error_A
+<checklink/*.ml>: pkg_bitstring
<checklink/Validator.*{byte,native}>: pkg_unix,pkg_str,pkg_bitstring
+<extraction/*.ml>: warn(-20)
+<**/*.ml>: warn(-3)