From 779d76ca6af9a884e2a8a3f478a3a9f92593d85c Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Tue, 7 Aug 2018 06:50:39 +0100 Subject: [PATCH] Correct Travis Ruby compilation flags --- Tools/testflags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/testflags.py b/Tools/testflags.py index 31ca2e7bd..a65299f0a 100755 --- a/Tools/testflags.py +++ b/Tools/testflags.py @@ -46,7 +46,7 @@ def get_cxxflags(language, std, compiler): "php":"-Werror " + cxx_common, "python":"-Werror " + cxx_common, "r":"-Werror " + cxx_common, - "ruby":"-Werror " + cxx_common + "-Wno-deprecated-declarations", # For Ruby on MacOS Xcode 9.4 misconfiguration defining 'isfinite' to deprecated 'finite' + "ruby":"-Werror " + cxx_common + " -Wno-deprecated-declarations", # For Ruby on MacOS Xcode 9.4 misconfiguration defining 'isfinite' to deprecated 'finite' "scilab":"-Werror " + cxx_common, "tcl":"-Werror " + cxx_common, }