Ai
2 Star 0 Fork 0

chromium_develop/chromium_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setenv.py 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2022-08-16 16:29 +08:00 . chromium origin init
# Copyright (c) 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Helper script to do the heavy lifting for setenv.bat.
"""
from __future__ import print_function
import os
import sys
script_path = os.path.abspath(os.path.dirname(__file__))
build_path = os.path.normpath(os.path.join(script_path, '..', '..', 'build'))
sys.path.append(build_path)
import vs_toolchain
if bool(int(os.environ.get('DEPOT_TOOLS_WIN_TOOLCHAIN', '1'))):
win_sdk_dir = vs_toolchain.SetEnvironmentAndGetSDKDir()
script_path = os.path.normpath(os.path.join(win_sdk_dir, 'bin/SetEnv.cmd'))
print('"%s" /x64' % script_path)
else:
vs_version = vs_toolchain.GetVisualStudioVersion()
vs_path = vs_toolchain.DetectVisualStudioPath()
if vs_version in ['2017', '2019']:
script_path = os.path.join(vs_path, r'VC\Auxiliary\Build\vcvarsall.bat')
print('"%s" amd64' % script_path)
else:
raise Exception('Unknown VS version %s' % vs_version)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chromium_develop/chromium_tools.git
git@gitee.com:chromium_develop/chromium_tools.git
chromium_develop
chromium_tools
chromium_tools
master

搜索帮助