1 Star 0 Fork 0

Barry / gn-build

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
settings.gni 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
if (is_clang) {
import("//build/toolchain/clang.gni")
}
declare_args() {
# Path of the GCC C compiler executable.
gcc_cc = "gcc"
# Path of the GCC C++ compiler executable.
gcc_cxx = "g++"
# Path of the Clang C compiler executable.
# Defaults to either $clang_base_path/bin/clang or clang.
clang_cc = 0
# Path of the Clang C++ compiler executable.
# Defaults to either $clang_base_path/bin/clang++ or clang++.
clang_cxx = 0
# Path of the 'readelf' utility.
readelf = "readelf"
# Path of the 'ar' utility.
ar = "ar"
# Path of the 'nm' utility.
nm = "nm"
}
if (is_clang && clang_cc == 0) {
if (clang_base_path != "") {
clang_cc = "$clang_base_path/clang"
} else {
clang_cc = "clang"
}
}
if (is_clang && clang_cxx == 0) {
if (clang_base_path != "") {
clang_cxx = "$clang_base_path/clang++"
} else {
clang_cxx = "clang++"
}
}
Python
1
https://gitee.com/Barryda/gn-build.git
git@gitee.com:Barryda/gn-build.git
Barryda
gn-build
gn-build
master

搜索帮助