Class: coder.make.BuildTool
Package: coder.make
Get build tool command
c_out = h.getCommand
c_out = h.getCommand('value')
c_out = h.getCommand('macro')
returns
the value of the c_out
= h
.getCommandcoder.make.BuildTool.Command
property.
also
returns the value of c_out
= h
.getCommand('value')coder.make.BuildTool.Command
.
returns
the macro name of c_out
= h
.getCommand('macro')coder.make.BuildTool.Command
.
tc = coder.make.ToolchainInfo;
btl = tc.getBuildTool('C Compiler');
btl.getCommand
ans = icl
btl.getCommand('value')
ans = icl
c_out = btl.getCommand('macro')
c_out = CC