Lines Matching refs:cmd_str
89 cmd_str = "#{compiler[:command]}#{compiler[:defines]}#{compiler[:options]}#{compiler[:includes]} #{file} " \
92 execute(cmd_str + obj_file)
114 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]}"
115 cmd_str += " #{(obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj}" }).join(' ')}"
116 cmd_str += " #{$cfg['linker']['bin_files']['prefix']} "
117 cmd_str += $cfg['linker']['bin_files']['destination']
118 cmd_str += exe_name + $cfg['linker']['bin_files']['extension']
119 execute(cmd_str)
211 cmd_str = if simulator.nil?
216 output = execute(cmd_str, true, false)