aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-10 19:19:19 -0400
committerJack Lloyd <[email protected]>2018-10-01 12:53:53 -0400
commit8eb900731da945d276f723534af09592213ee582 (patch)
treed080c6fd2ca760796b522d21288b0b4bfc0b6e65 /configure.py
parenta792728e8941b62761052f5e0d288ba13a016c77 (diff)
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.py b/configure.py
index bf091946b..0b1df5fc3 100755
--- a/configure.py
+++ b/configure.py
@@ -469,9 +469,6 @@ def process_command_line(args): # pylint: disable=too-many-locals,too-many-state
build_group.add_option('--with-debug-asserts', action='store_true', default=False,
help=optparse.SUPPRESS_HELP)
- build_group.add_option('--ack-vc2013-deprecated', action='store_true', default=False,
- help=optparse.SUPPRESS_HELP)
-
docs_group = optparse.OptionGroup(parser, 'Documentation Options')
docs_group.add_option('--with-documentation', action='store_true',
@@ -2964,12 +2961,6 @@ def calculate_cc_min_version(options, ccinfo, source_paths):
cc_version = "%d.%d" % (major_version, minor_version)
logging.info('Auto-detected compiler version %s' % (cc_version))
- if ccinfo.basename == 'msvc':
- if major_version == 18:
- logging.warning('MSVC 2013 support is deprecated, and will be removed in Jan 2019')
- if not options.ack_vc2013_deprecated:
- logging.error('Acknowledge this deprecation by adding flag --ack-vc2013-deprecated')
-
return cc_version
def check_compiler_arch(options, ccinfo, archinfo, source_paths):