diff options
Diffstat (limited to 'xmake/scripts/compiler/_clang.lua')
| -rw-r--r-- | xmake/scripts/compiler/_clang.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/scripts/compiler/_clang.lua b/xmake/scripts/compiler/_clang.lua index 27f9b868f..6bfa83d69 100644 --- a/xmake/scripts/compiler/_clang.lua +++ b/xmake/scripts/compiler/_clang.lua @@ -33,6 +33,13 @@ function _clang._init(configs) end +-- make the compiler command +function _clang._make(configs, srcfile, objfile, flags) + + -- make it + return string.format("%s -c %s -o%s %s", configs.name, flags, objfile, srcfile) +end + -- map gcc flag to the current compiler flag function _clang._mapflag(configs, flag) |
