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 be11800 commit 2665696Copy full SHA for 2665696
src/extension.ts
@@ -194,12 +194,16 @@ export function activate(context: ExtensionContext) {
194
clientConfig['clientVersion'] = VERSION
195
let args = ['--language-server'].concat(clientConfig['launchArgs']);
196
197
+ let env: any = {};
198
+ // env.LIBCLANG_LOGGING = '1';
199
+ // env.MALLOC_CHECK_ = '2';
200
+
201
let serverOptions: ServerOptions = {
202
command: clientConfig.launchCommand,
203
args: args,
204
options: {
- cwd: clientConfig.launchWorkingDirectory
- // env: { 'MALLOC_CHECK_': '2' }
205
+ cwd: clientConfig.launchWorkingDirectory,
206
+ env: env
207
}
208
};
209
console.log(
0 commit comments