Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Use the debug adapter from cdt-gdb-vscode/cdt-gdb-adapter #10

Merged
merged 1 commit into from
Jan 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
260 changes: 0 additions & 260 deletions packages/cpp-debug/data/cpp-debug-configuration-schema.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/cpp-debug/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"backend": "lib/node/cpp-debug-backend-module"
}],
"adapters": {
"code-debug": "https://github.com/marechal-p/code-debug/releases/download/v0.22.0/code-debug.tar.gz"
"cdt-gdb-vscode": "https://github.com/theia-ide/cdt-gdb-vscode/releases/download/v0.0.4/cdt-gdb-vscode-0.0.4.tgz"
}
}
2 changes: 1 addition & 1 deletion packages/cpp-debug/src/node/cpp-debug-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { join } from 'path';
import * as Ajv from 'ajv';

const adapterName = 'gdb';
const adapterPath = join(__dirname, '../../adapters/code-debug');
const adapterPath = join(__dirname, '../../adapters/cdt-gdb-vscode/package');

// Load schema from package.json
const packageJson = require(join(adapterPath, 'package.json'));
Expand Down