diff options
| author | ruki <[email protected]> | 2021-10-26 22:52:49 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-10-26 22:52:49 +0800 |
| commit | cefbbead0df98e924e79384765eccabd8850c5d1 (patch) | |
| tree | 430fa1d0e77a70122574f855f9df0ab296ec05fd /xmake/modules/core/tools/armlink.lua | |
| parent | f039264c1bb4fc8247b23800c1331c0baa45cb88 (diff) | |
add arm tools
Diffstat (limited to 'xmake/modules/core/tools/armlink.lua')
| -rw-r--r-- | xmake/modules/core/tools/armlink.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/armlink.lua b/xmake/modules/core/tools/armlink.lua new file mode 100644 index 000000000..34895be6c --- /dev/null +++ b/xmake/modules/core/tools/armlink.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 armlink.lua +-- + +inherit("gcc") + +function init(self) + _super.init(self) +end |
