(output_filename, filenames)
| 142 | |
| 143 | |
| 144 | def create_lib_emar(output_filename, filenames): |
| 145 | utils.delete_file(output_filename) |
| 146 | cmd = [shared.EMAR, 'cr', output_filename] + filenames |
| 147 | cmd = building.get_command_with_possible_response_file(cmd) |
| 148 | shared.check_call(cmd) |
| 149 | |
| 150 | |
| 151 | def create_lib(libname, inputs): |