2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-21 17:35:55 +01:00

Remove print_all_msvc_detected

This commit is contained in:
Thomas Nagy 2016-05-22 17:10:21 +02:00
parent 315d94ec24
commit 9c44a4b360
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
2 changed files with 1 additions and 15 deletions

View File

@ -469,10 +469,6 @@ Configuration methods
* post_check_
.. _print_all_msvc_detected: tools/msvc.html#waflib.Tools.msvc.print_all_msvc_detected
* print_all_msvc_detected_
.. _program: tools/c_aliases.html#waflib.Tools.c_aliases.program
* program_

View File

@ -591,7 +591,7 @@ def get_msvc_versions(self):
:return: list of compilers installed
:rtype: list
"""
# Gather all the compiler versions and targets
# Gather all compiler versions and targets
lst = []
self.gather_icl_versions(lst)
self.gather_intel_composer_versions(lst)
@ -599,16 +599,6 @@ def get_msvc_versions(self):
self.gather_msvc_versions(lst)
return lst
@conf
def print_all_msvc_detected(self):
"""
Print the contents of *self.env.MSVC_INSTALLED_VERSIONS*
"""
for version,targets in self.env['MSVC_INSTALLED_VERSIONS']:
Logs.info(version)
for target,l in targets:
Logs.info("\t"+target)
@conf
def find_lt_names_msvc(self, libname, is_static=False):
"""