summaryrefslogtreecommitdiff
path: root/xmake/core/tool/compiler.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-07-09 22:34:16 +0800
committerruki <[email protected]>2016-07-09 22:34:16 +0800
commitf54223a97ba93b02128df84d52d3efe7abd2a36a (patch)
treeb6d5e5d1b4d70bd1eeadf936751eb50930f3bab6 /xmake/core/tool/compiler.lua
parent0d3075a0739eff0e28db11889a62ed3db8f4ab9f (diff)
add archiver and extractor
Diffstat (limited to 'xmake/core/tool/compiler.lua')
-rw-r--r--xmake/core/tool/compiler.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/xmake/core/tool/compiler.lua b/xmake/core/tool/compiler.lua
index da4e284fd..bb4aa2455 100644
--- a/xmake/core/tool/compiler.lua
+++ b/xmake/core/tool/compiler.lua
@@ -478,22 +478,5 @@ function compiler:check(flags)
return ok
end
--- run the command
-function compiler:run(...)
-
- -- the compiler tool
- local ctool = self:_tool()
-
- -- no run interface?
- if not ctool.run then
-
- -- run it
- return os.run(...)
- end
-
- -- run it
- return sandbox.load(ctool.run, ...)
-end
-
-- return module
return compiler