From bfc7b2e30fe2d35ffddf56ea7ccff178cc9b7e9b Mon Sep 17 00:00:00 2001 From: cremno Date: Tue, 22 Mar 2016 11:41:16 +0100 Subject: deprecate Visual Studio 2010 and 2012 --- tasks/toolchains/visualcpp.rake | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tasks') diff --git a/tasks/toolchains/visualcpp.rake b/tasks/toolchains/visualcpp.rake index 3d273900e..7a02eafe6 100644 --- a/tasks/toolchains/visualcpp.rake +++ b/tasks/toolchains/visualcpp.rake @@ -50,4 +50,15 @@ MRuby::Toolchain.new(:visualcpp) do |conf, _params| end conf.file_separator = '\\' + + if require 'open3' + Open3.popen3 conf.cc.command do |_, _, e, _| + if /Version (?\d{2}\.\d{2}\.\d{5})/ =~ e.gets && v.to_i <= 17 + m = "# VS2010/2012 support will be dropped after the next release! #" + h = "#" * m.length + puts h, m, h + end + end + end + end -- cgit v1.2.3