Update build.py: add a comment (#20993)

### Description
Update build.py: add a comment


### Motivation and Context
See the comment.
This commit is contained in:
Changming Sun 2024-06-18 13:52:34 -07:00 committed by GitHub
parent 631a2c16be
commit ffb8e8eb0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -366,7 +366,11 @@ def parse_arguments():
default="",
help="Path to RISC-V qemu. e.g. --riscv_qemu_path=$HOME/qemu-dir/qemu-riscv64",
)
parser.add_argument("--msvc_toolset", help="MSVC toolset to use. e.g. 14.11")
# https://gitlab.kitware.com/cmake/cmake/-/issues/25192
parser.add_argument(
"--msvc_toolset",
help="MSVC toolset to use. e.g. 14.11. It doesn't work if the version number is in the range of [14.36, 14.39]",
)
parser.add_argument("--windows_sdk_version", help="Windows SDK version to use. e.g. 10.0.19041.0")
parser.add_argument("--android", action="store_true", help="Build for Android")
parser.add_argument(