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:
parent
315d94ec24
commit
9c44a4b360
@ -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_
|
||||
|
@ -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):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user