We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2caac commit 55a6ca5Copy full SHA for 55a6ca5
tools/export/cdt/__init__.py
@@ -63,7 +63,8 @@ def generate(self):
63
64
launch_cfgs = {}
65
for launch_name in supported_launches:
66
- launch = dict(ctx.items() + {'device': self.get_target_config(ctx, launch_name)}.items())
+ launch = dict(ctx.items())
67
+ launch.update({'device': self.get_target_config(ctx, launch_name)}.items())
68
launch_cfgs.update({launch_name: launch})
69
70
if not exists(join(self.export_dir,'eclipse-extras')):
0 commit comments