mirror of https://github.com/ARMmbed/mbed-os.git
Exporters IAR - fix template path
parent
36fe6a0b74
commit
31f74b8e45
|
@ -56,9 +56,10 @@ class IAREmbeddedWorkbench(Exporter):
|
||||||
'c_flags': ['--diag_suppress=Pa050,Pa084,Pa093,Pa082'],
|
'c_flags': ['--diag_suppress=Pa050,Pa084,Pa093,Pa082'],
|
||||||
'ld_flags': ['--skip_dynamic_initialization'],
|
'ld_flags': ['--skip_dynamic_initialization'],
|
||||||
},
|
},
|
||||||
'template': ['workspace_tools/export/iar_template.ewp.tmpl'],
|
'template': [os.path.join(os.path.dirname(__file__), 'iar_template.ewp.tmpl')],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
# print tool_specific['iar']['template']
|
||||||
project_data['tool_specific'] = {}
|
project_data['tool_specific'] = {}
|
||||||
project_data['tool_specific'].update(tool_specific)
|
project_data['tool_specific'].update(tool_specific)
|
||||||
self.progen_gen_file('iar_arm', project_data)
|
self.progen_gen_file('iar_arm', project_data)
|
||||||
|
|
Loading…
Reference in New Issue