diff options
| author | ruki <[email protected]> | 2023-06-06 23:35:08 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-06-06 23:35:08 +0800 |
| commit | be433ce47536db2b420d9744a19cf02d94ecb9b9 (patch) | |
| tree | e77af99182d196f59a6dc87d1f23417d19b24216 /xmake/modules/private/utils | |
| parent | 2a76eb4639af33cac5adf07be29abae34e5614bd (diff) | |
add toolchain utils
Diffstat (limited to 'xmake/modules/private/utils')
| -rw-r--r-- | xmake/modules/private/utils/toolchain.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/xmake/modules/private/utils/toolchain.lua b/xmake/modules/private/utils/toolchain.lua new file mode 100644 index 000000000..dd1b6df0c --- /dev/null +++ b/xmake/modules/private/utils/toolchain.lua @@ -0,0 +1,33 @@ +--!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 toolchain.lua +-- + +-- is the compatible with the host? +function is_compatible_with_host(name) + if is_host("linux", "macosx", "bsd") then + if name:startswith("clang") or name:startswith("gcc") or name == "llvm" then + return true + end + elseif is_host("windows") then + if name == "msvc" or name == "llvm" then + return true + end + end +end + |
