summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-01-11 21:31:42 -0700
committerZackery Spytz <zspytz@gmail.com>2019-01-11 21:31:42 -0700
commitded4abab62da503f399221bb625e460a0a6f6c06 (patch)
treeda2824603349c8e624efcf9eb0cf8a7be47ca376 /Tools
parent51bfdce781b727b39daffdc4d448eff330ed105c (diff)
downloadswig-ded4abab62da503f399221bb625e460a0a6f6c06.tar.gz
Some renaming
Add OCaml to Tools/testflags.py.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/testflags.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/testflags.py b/Tools/testflags.py
index a65299f0a..ac8048e5f 100755
--- a/Tools/testflags.py
+++ b/Tools/testflags.py
@@ -12,6 +12,7 @@ def get_cflags(language, std, compiler):
"java":"-Werror " + c_common,
"javascript":"-Werror " + c_common,
"lua":"-Werror " + c_common,
+ "ocaml":"-Werror " + c_common,
"octave":"-Werror " + c_common,
"perl5":"-Werror " + c_common,
"php":"-Werror " + c_common,
@@ -41,6 +42,7 @@ def get_cxxflags(language, std, compiler):
"java":"-Werror " + cxx_common,
"javascript":"-Werror " + cxx_common + " -Wno-error=unused-function", # Until overload_rename is fixed for node
"lua":"-Werror " + cxx_common,
+ "ocaml":"-Werror " + cxx_common,
"octave":"-Werror " + cxx_common,
"perl5":"-Werror " + cxx_common,
"php":"-Werror " + cxx_common,