diff options
Diffstat (limited to 'xmake/core/base/utils.lua')
| -rw-r--r-- | xmake/core/base/utils.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua index fd1f053d6..596826ed9 100644 --- a/xmake/core/base/utils.lua +++ b/xmake/core/base/utils.lua @@ -56,6 +56,13 @@ function utils.error(msg, ...) print("error: " .. string.format(msg, ...)) end +-- the abort function +function utils.abort() + + -- trace + error() +end + -- the warning function function utils.warning(msg, ...) |
