diff options
| author | ruki <[email protected]> | 2022-05-01 21:47:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-01 21:47:47 +0800 |
| commit | 6948a822ea35dc61092dedadfaaa7e542c81f202 (patch) | |
| tree | 4cbd2d4284a808fc407502ef0fccd0186f1b092c | |
| parent | 973fdebd73cc0f4db070a958bd4f83f9be0518c9 (diff) | |
find nvc, nvc++
| -rw-r--r-- | xmake/modules/detect/tools/find_nvc.lua | 39 | ||||
| -rw-r--r-- | xmake/modules/detect/tools/find_nvcxx.lua | 39 | ||||
| -rw-r--r-- | xmake/modules/detect/tools/find_nvfortran.lua | 39 |
3 files changed, 117 insertions, 0 deletions
diff --git a/xmake/modules/detect/tools/find_nvc.lua b/xmake/modules/detect/tools/find_nvc.lua new file mode 100644 index 000000000..299d7b4f6 --- /dev/null +++ b/xmake/modules/detect/tools/find_nvc.lua @@ -0,0 +1,39 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file find_nvc.lua +-- + +-- imports +import("private.detect.find_cudatool") + +-- find nvc +-- +-- @param opt the argument options, e.g. {version = true} +-- +-- @return program, version +-- +-- @code +-- +-- local nvc = find_nvc() +-- local nvc, version = find_nvc({program = "nvc", version = true}) +-- +-- @endcode +-- +function main(opt) + return find_cudatool("nvc", "V(%d+%.?%d*%.?%d*.-)%s", opt) +end diff --git a/xmake/modules/detect/tools/find_nvcxx.lua b/xmake/modules/detect/tools/find_nvcxx.lua new file mode 100644 index 000000000..ece5e8374 --- /dev/null +++ b/xmake/modules/detect/tools/find_nvcxx.lua @@ -0,0 +1,39 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file find_nvcxx.lua +-- + +-- imports +import("private.detect.find_cudatool") + +-- find nvcxx +-- +-- @param opt the argument options, e.g. {version = true} +-- +-- @return program, version +-- +-- @code +-- +-- local nvcxx = find_nvcxx() +-- local nvcxx, version = find_nvcxx({program = "nvcxx", version = true}) +-- +-- @endcode +-- +function main(opt) + return find_cudatool("nvc++", "V(%d+%.?%d*%.?%d*.-)%s", opt) +end diff --git a/xmake/modules/detect/tools/find_nvfortran.lua b/xmake/modules/detect/tools/find_nvfortran.lua new file mode 100644 index 000000000..096c8cb14 --- /dev/null +++ b/xmake/modules/detect/tools/find_nvfortran.lua @@ -0,0 +1,39 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file find_nvfortran.lua +-- + +-- imports +import("private.detect.find_cudatool") + +-- find nvfortran +-- +-- @param opt the argument options, e.g. {version = true} +-- +-- @return program, version +-- +-- @code +-- +-- local nvfortran = find_nvfortran() +-- local nvfortran, version = find_nvfortran({program = "nvfortran", version = true}) +-- +-- @endcode +-- +function main(opt) + return find_cudatool("nvfortran", "V(%d+%.?%d*%.?%d*.-)%s", opt) +end |
