We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93b8691 commit 10cf2e7Copy full SHA for 10cf2e7
1 file changed
templates/JLink.adapter.json
@@ -17,7 +17,7 @@
17
},
18
"program": "<%= symbol_files[0]?.file ?? '' %>",
19
"programs": "<%= symbol_files.flatMap(e => (e.pname || !processors?.length) ? e : processors.map(p => ({ ...e, pname: p }))).groupedBy(v => v.pname ?? '') %>",
20
- "JLinkGDBServerCL": "JLinkGDBServerCL<%= platform === 'win32' ? '.exe' : '' %>",
+ "JLinkGDBServerCL": "JLinkGDBServerCL<%= platform === 'win32' ? '.exe' : (platform === 'darwin' ? '' : 'Exe') %>",
21
"JLink": "JLink<%= platform === 'win32' ? '.exe' : 'Exe' %>",
22
"jlinkDevice": "<%= device_name %><%= start_pname ? `_${start_pname}` : '' %>",
23
"jlinkDevices": "<%= Object.fromEntries(processors.map(pname => [pname ?? '', `${device_name}_${pname ?? start_pname ?? ''}`])) %>",
0 commit comments