summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-01 22:21:48 +0800
committerruki <[email protected]>2022-05-01 22:21:48 +0800
commit8c76018e3ff63b122fbd5fe64bae780f9b4ee19e (patch)
tree73c38095e2467901b3b2bff06f6ffcdd68e18414
parente456ecaf8539a67d5e0d3354d7bd5eb9727852a0 (diff)
update readme
-rw-r--r--CHANGELOG.md8
-rw-r--r--README.md2
-rw-r--r--README_zh.md2
-rw-r--r--xmake/toolchains/cuda/xmake.lua2
4 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ac4fdce23..c49105b95 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## master (unreleased)
+### New features
+
+* [#2327](https://github.com/xmake-io/xmake/issues/2327): Support nvc/nvc++/nvfortran in nvidia-hpc-sdk
+
### Changes
* [#2309](https://github.com/xmake-io/xmake/issues/2309): Support user authorization for remote compilation
@@ -1250,6 +1254,10 @@
## master (开发中)
+### 新特性
+
+* [#2327](https://github.com/xmake-io/xmake/issues/2327): 支持 nvidia-hpc-sdk 工具链中的 nvc/nvc++/nvfortran 编译器
+
### 改进
* [#2309](https://github.com/xmake-io/xmake/issues/2309): 远程编译支持用户授权验证
diff --git a/README.md b/README.md
index 26fe636a0..c5690667a 100644
--- a/README.md
+++ b/README.md
@@ -240,7 +240,7 @@ dlang D Programming Language Compiler
gfortran GNU Fortran Programming Language Compiler
zig Zig Programming Language Compiler
sdcc Small Device C Compiler
-cuda CUDA Toolkit
+cuda CUDA Toolkit (nvcc, nvc, nvc++, nvfortran)
ndk Android NDK
rust Rust Programming Language Compiler
swift Swift Programming Language Compiler
diff --git a/README_zh.md b/README_zh.md
index 932a8f108..641d113f2 100644
--- a/README_zh.md
+++ b/README_zh.md
@@ -248,7 +248,7 @@ dlang D Programming Language Compiler
gfortran GNU Fortran Programming Language Compiler
zig Zig Programming Language Compiler
sdcc Small Device C Compiler
-cuda CUDA Toolkit
+cuda CUDA Toolkit (nvcc, nvc, nvc++, nvfortran)
ndk Android NDK
rust Rust Programming Language Compiler
swift Swift Programming Language Compiler
diff --git a/xmake/toolchains/cuda/xmake.lua b/xmake/toolchains/cuda/xmake.lua
index 2145368a7..46427e538 100644
--- a/xmake/toolchains/cuda/xmake.lua
+++ b/xmake/toolchains/cuda/xmake.lua
@@ -23,7 +23,7 @@ toolchain("cuda")
-- set homepage
set_homepage("https://developer.nvidia.com/cuda-toolkit")
- set_description("CUDA Toolkit")
+ set_description("CUDA Toolkit (nvcc, nvc, nvc++, nvfortran)")
-- set toolset
set_toolset("cc", "nvc")