4 Star 3 Fork 1

张远浩/depot_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ninja 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
cloudwebrtc 提交于 2015-10-12 16:04 . [ADD/MOD]解压缩depot_tools文件
#!/usr/bin/env bash
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
OS="$(uname -s)"
THIS_DIR="$(dirname "${0}")"
function print_help() {
cat <<-EOF
No prebuilt ninja binary was found for this system.
Try building your own binary by doing:
cd ~
git clone https://github.com/martine/ninja.git -b v1.6.0
cd ninja && ./configure.py --bootstrap
Then add ~/ninja/ to your PATH.
EOF
}
case "$OS" in
Linux)
MACHINE=$(uname -m)
case "$MACHINE" in
i?86|x86_64)
LONG_BIT=$(getconf LONG_BIT)
# We know we are on x86 but we need to use getconf to determine
# bittage of the userspace install (e.g. when runing 32-bit userspace
# on x86_64 kernel)
exec "${THIS_DIR}/ninja-linux${LONG_BIT}" "$@";;
*)
echo Unknown architecture \($MACHINE\) -- unable to run ninja.
print_help
exit 1;;
esac
;;
Darwin) exec "${THIS_DIR}/ninja-mac" "$@";;
CYGWIN*) exec cmd.exe /c $(cygpath -t windows $0).exe "$@";;
MINGW32*) cmd.exe //c $0.exe "$@";;
*) echo "Unsupported OS ${OS}"
print_help
exit 1;;
esac
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bluefoxah/depot_tools.git
git@gitee.com:bluefoxah/depot_tools.git
bluefoxah
depot_tools
depot_tools
master

搜索帮助