diff options
| author | ruki <[email protected]> | 2020-10-06 23:50:13 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-06 23:50:13 +0800 |
| commit | 9779cee5d7da7ea01a18141ae5811719d4730410 (patch) | |
| tree | 625bd4f564a99d3d2c50830e8b05cc7722527fb9 /xmake/modules/core/tools/icpc.lua | |
| parent | b22465291ce28f752bcb156da735c068ad121c83 (diff) | |
| parent | 0797bc2920576fa61ddf520996e7237569d804b6 (diff) | |
Merge pull request #984 from xmake-io/icc
add icc toolchain
Diffstat (limited to 'xmake/modules/core/tools/icpc.lua')
| -rw-r--r-- | xmake/modules/core/tools/icpc.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/icpc.lua b/xmake/modules/core/tools/icpc.lua new file mode 100644 index 000000000..6639bfcfe --- /dev/null +++ b/xmake/modules/core/tools/icpc.lua @@ -0,0 +1,28 @@ +--!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-2020, TBOOX Open Source Group. +-- +-- @author ruki +-- @file icpc.lua +-- + +-- inherit gcc +inherit("gcc") + +-- init it +function init(self) + _super.init(self) +end + |
