summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel <dmoody256@gmail.com>2019-01-12 15:04:56 -0600
committerDaniel <dmoody256@gmail.com>2019-01-12 15:04:56 -0600
commitb1141a34a2e9281f973ecb6b5bbf9280755ce40e (patch)
treef718c33c57fa4c5d7aa535c68f233589bdf05aff
parent2fe4f5b4038ab41ba9547ce2ff9e5e8270860bb0 (diff)
downloadscons-git-b1141a34a2e9281f973ecb6b5bbf9280755ce40e.tar.gz
update comment
-rw-r--r--src/engine/SCons/Tool/MSCommon/vc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/MSCommon/vc.py b/src/engine/SCons/Tool/MSCommon/vc.py
index ec63fba10..6c4604942 100644
--- a/src/engine/SCons/Tool/MSCommon/vc.py
+++ b/src/engine/SCons/Tool/MSCommon/vc.py
@@ -467,8 +467,9 @@ def _check_cl_exists_in_vc_dir(env, vc_dir, msvc_version):
cl_path_exists = os.path.exists(cl_path)
if not cl_path_exists and host_platform == 'amd64':
- # older versions of visual studio only had x86 binaries, so if the host platform is amd64, we need to check cross compile options (x86 binary compiles some other target on a 64 bit os)
-
+ # older versions of visual studio only had x86 binaries,
+ # so if the host platform is amd64, we need to check cross
+ # compile options (x86 binary compiles some other target on a 64 bit os)
host_trgt_dir = _HOST_TRGT_TO_CL_DIR.get(('x86', target_platform), None)
if not host_trgt_dir:
return False