diff options
| author | FrankHB <[email protected]> | 2019-08-11 18:06:42 +0800 |
|---|---|---|
| committer | FrankHB <[email protected]> | 2019-08-11 18:06:42 +0800 |
| commit | 0bdcae97d8d9b2b3afe725f9b857a9994d3b28fa (patch) | |
| tree | 4a3282446375c2a3e0165170f626a3ca827269bc /xmake/modules/core/tools/yasm.lua | |
| parent | 35878524802b5144368f4bcad14264611a2fcff9 (diff) | |
fix typos
Changed all 'complie' to 'compile'. Added missing 'the' for some cases.
Signed-off-by: FrankHB <[email protected]>
Diffstat (limited to 'xmake/modules/core/tools/yasm.lua')
| -rw-r--r-- | xmake/modules/core/tools/yasm.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmake/modules/core/tools/yasm.lua b/xmake/modules/core/tools/yasm.lua index 2fd7f0507..d06026857 100644 --- a/xmake/modules/core/tools/yasm.lua +++ b/xmake/modules/core/tools/yasm.lua @@ -79,12 +79,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, "-o", objectfile, sourcefile) end --- complie the source file +-- compile the source file function _compile1(self, sourcefile, objectfile, dependinfo, flags) -- ensure the object directory @@ -123,7 +123,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 @@ -133,7 +133,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 |
