summaryrefslogtreecommitdiff
path: root/xmake/modules/core/tools/llvm_rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules/core/tools/llvm_rc.lua')
-rw-r--r--xmake/modules/core/tools/llvm_rc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/modules/core/tools/llvm_rc.lua b/xmake/modules/core/tools/llvm_rc.lua
index 941cbaea7..ab072d507 100644
--- a/xmake/modules/core/tools/llvm_rc.lua
+++ b/xmake/modules/core/tools/llvm_rc.lua
@@ -47,12 +47,12 @@ function nf_includedir(self, dir)
return "/I " .. os.args(dir)
end
--- make the complie arguments list
+-- make the compile arguments list
function _compargv1(self, sourcefile, objectfile, flags)
return self:program(), table.join(flags, "/FO", objectfile, sourcefile)
end
--- complie the source file
+-- compile the source file
function _compile1(self, sourcefile, objectfile, dependinfo, flags)
-- ensure the object directory
@@ -86,7 +86,7 @@ function _compile1(self, sourcefile, objectfile, dependinfo, flags)
}
end
--- make the complie arguments list
+-- make the compile arguments list
function compargv(self, sourcefiles, objectfile, flags)
-- only support single source file now
@@ -96,7 +96,7 @@ function compargv(self, sourcefiles, objectfile, flags)
return _compargv1(self, sourcefiles, objectfile, flags)
end
--- complie the source file
+-- compile the source file
function compile(self, sourcefiles, objectfile, dependinfo, flags)
-- only support single source file now