Skip to content

Commit 10cf2e7

Browse files
authored
Updating JLinkGDBServer name for Linux platform (#87)
* Updating JLinkGDBServer name for Linux platform * setting up Exe to be used for all non darwin platforms
1 parent 93b8691 commit 10cf2e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

templates/JLink.adapter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"program": "<%= symbol_files[0]?.file ?? '' %>",
1919
"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' : '' %>",
20+
"JLinkGDBServerCL": "JLinkGDBServerCL<%= platform === 'win32' ? '.exe' : (platform === 'darwin' ? '' : 'Exe') %>",
2121
"JLink": "JLink<%= platform === 'win32' ? '.exe' : 'Exe' %>",
2222
"jlinkDevice": "<%= device_name %><%= start_pname ? `_${start_pname}` : '' %>",
2323
"jlinkDevices": "<%= Object.fromEntries(processors.map(pname => [pname ?? '', `${device_name}_${pname ?? start_pname ?? ''}`])) %>",

0 commit comments

Comments
 (0)