We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d05e74 commit 3fb2f75Copy full SHA for 3fb2f75
1 file changed
mod/tools/vscode.py
@@ -91,7 +91,9 @@ def write_launch_json(fips_dir, proj_dir, vscode_dir, cfg, proj_settings):
91
'cwd': deploy_dir,
92
'args': [],
93
}
94
- if host_platform == 'win':
+ if host_platform == 'osx':
95
+ launch_config['type'] = 'lldb'
96
+ elif host_platform == 'win':
97
launch_config['type'] = 'cppvsdbg'
98
elif host_platform == 'linux':
99
launch_config['type'] = 'cppdbg'
0 commit comments