Ai
1 Star 1 Fork 1

git_mirror/open-gpu-kernel-modules

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nv-compiler.sh 2.52 KB
一键复制 编辑 原始数据 按行查看 历史
Andy Ritger 提交于 2022-11-11 00:39 +08:00 . 525.53
#!/bin/sh
# SPDX-FileCopyrightText: Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: MIT
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
set -e
get_compiler_type()
{
printf "#if defined(__clang__)
clang
#elif defined(__GNUC__)
gcc
#elif defined(__INTEL_COMPILER)
icc
#else
unknown
#endif" | $1 -E -P -
}
get_original_version()
{
printf "#if defined(__clang__)
__clang_major__ __clang_minor__ __clang_patchlevel__
#elif defined(__GNUC__)
__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__
#elif defined(__INTEL_COMPILER)
__INTEL_COMPILER __INTEL_COMPILER_UPDATE
#endif" | $1 -E -P -
}
get_canonical_version()
{
type=$(get_compiler_type $1)
set -- $(get_original_version $1)
# get the version based on the type
if [ "$type" = "unknown" ]; then
echo >&2 "unknown compiler: bailing out"
exit 1
elif [ "$type" = "icc" ]; then
echo >&2 "icc is not supported"
exit 1
else
major=$1
minor=$2
fi
patch=$3
echo $(($3 + $2 * 100 + $1 * 10000))
}
if [ "$1" = "type" ]; then
echo $(get_compiler_type $2)
elif [ "$1" = "version_is_at_least" ]; then
if [ -z "$3" ]; then
echo >&2 "minimum compiler version cannot be empty"
exit 1
fi
version=$(get_canonical_version $2)
if [ "$version" -gt $(($3-1)) ]; then
echo "1"
fi
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/git_mirror/open-gpu-kernel-modules.git
git@gitee.com:git_mirror/open-gpu-kernel-modules.git
git_mirror
open-gpu-kernel-modules
open-gpu-kernel-modules
main

搜索帮助