diff options
| author | ruki <[email protected]> | 2021-10-26 22:52:14 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-10-26 22:52:14 +0800 |
| commit | f039264c1bb4fc8247b23800c1331c0baa45cb88 (patch) | |
| tree | 94c2af6523ede24460b3a8a26fdc42d9d1b3ecf3 /xmake/modules/core/tools/armcc.lua | |
| parent | d1e61a632767c25fa0db5bde323a2765ed273f8f (diff) | |
add find armlink, armar, armasm
Diffstat (limited to 'xmake/modules/core/tools/armcc.lua')
| -rw-r--r-- | xmake/modules/core/tools/armcc.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/armcc.lua b/xmake/modules/core/tools/armcc.lua new file mode 100644 index 000000000..40854eb7a --- /dev/null +++ b/xmake/modules/core/tools/armcc.lua @@ -0,0 +1,25 @@ +--!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 armcc.lua +-- + +inherit("gcc") + +function init(self) + _super.init(self) +end |
