Skip to content

Commit d1924d6

Browse files
authored
Merge pull request #2355 from Microsoft/seanmcm/0_17_8_insiders
Seanmcm/0 17 8 insiders
2 parents 6dc1494 + 610a395 commit d1924d6

20 files changed

+559
-166
lines changed

Extension/.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"runtimeExecutable": "${execPath}",
2525
"args": [
2626
"--extensionDevelopmentPath=${workspaceFolder}",
27-
"--extensionTestsPath=${workspaceFolder}/out/test"
27+
"--extensionTestsPath=${workspaceFolder}/out/test/unitTests"
2828
],
2929
"stopOnEntry": false,
3030
"sourceMaps": true,

Extension/CHANGELOG.md

+29-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 0.17.7: July 16, 2018
3+
## Version 0.17.8-insiders: August 6, 2018
4+
* Fix attach to process for systems without `bash` by using `sh` instead. [#569](https://github.com/Microsoft/vscode-cpptools/issues/569)
5+
* Andy Neff (@andyneff) [PR 2340](https://github.com/Microsoft/vscode-cpptools/pull/2340)
6+
* Fix IntelliSense crash after hover or completion with `_Complex` types. [#689](https://github.com/Microsoft/vscode-cpptools/issues/689), [#1112](https://github.com/Microsoft/vscode-cpptools/issues/1112)
7+
* Add `C_Cpp.workspaceSymbols` setting with default `Just My Code` to filter out system header symbols. [#1119](https://github.com/Microsoft/vscode-cpptools/issues/1119), [#2320](https://github.com/Microsoft/vscode-cpptools/issues/2320)
8+
* Add `C_Cpp.inactiveRegionForegroundColor` and `C_Cpp.inactiveRegionBackgroundColor` settings. [#1620](https://github.com/Microsoft/vscode-cpptools/issues/1620), [#2212](https://github.com/Microsoft/vscode-cpptools/issues/2212)
9+
* John Patterson (@john-patterson) [PR 2308](https://github.com/Microsoft/vscode-cpptools/pull/2308)
10+
* Fix Mac framework dependencies not being discovered. [#1913](https://github.com/Microsoft/vscode-cpptools/issues/1913)
11+
* Fix red flame getting stuck after modifying `c_cpp_properties.json`. [#2077](https://github.com/Microsoft/vscode-cpptools/issues/2077)
12+
* Add `gcc-x64` `intelliSenseMode` and send the correct clang or gcc version to our parser, fixing various IntelliSense errors. [#2175](https://github.com/Microsoft/vscode-cpptools/issues/2175), [#2299](https://github.com/Microsoft/vscode-cpptools/issues/2299), [#2317](https://github.com/Microsoft/vscode-cpptools/issues/2317)
13+
* Make `Go to Definition` on the definition go to the declaration instead. [#2298](https://github.com/Microsoft/vscode-cpptools/issues/2298)
14+
* Don't add empty `windowsSDKVersion` if none exists. [#2300](https://github.com/Microsoft/vscode-cpptools/issues/2300)
15+
* Add multi-pass environment variable resolution allowing variables defined in terms of other variables. [#2322](https://github.com/Microsoft/vscode-cpptools/pull/2322)
16+
* John Patterson (@john-patterson) [PR 2322](https://github.com/Microsoft/vscode-cpptools/pull/2322)
17+
* Fix IntelliSense crash when the gcc-8 type_traits header is used. [#2323](https://github.com/Microsoft/vscode-cpptools/issues/2323), [#2328](https://github.com/Microsoft/vscode-cpptools/issues/2328)
18+
* Limit configuration popups to one at a time. [#2324](https://github.com/Microsoft/vscode-cpptools/issues/2324)
19+
* Allow users to use `~` for `${userProfile}` on Windows. [PR 2333](https://github.com/Microsoft/vscode-cpptools/pull/2333)
20+
* Filter out buggy IntelliSense error `"= delete" can only appear on the first declaration of a function`. [#2352](https://github.com/Microsoft/vscode-cpptools/issues/2352)
21+
22+
## Version 0.17.7: July 22, 2018
423
* Fix `Go to Definition` for code scoped with an aliased namespace. [#387](https://github.com/Microsoft/vscode-cpptools/issues/387)
524
* Fix incorrect IntelliSense errors with template template-arguments. [#1014](https://github.com/Microsoft/vscode-cpptools/issues/1014)
625
* Fix crash when using designated initializer lists. [#1440](https://github.com/Microsoft/vscode-cpptools/issues/1440)
726
* Add `windowsSdkVersion` to `c_cpp_properties.json`. [#1585](https://github.com/Microsoft/vscode-cpptools/issues/1585)
827
* Add `${vcpkgRoot}` variable. [#1817](https://github.com/Microsoft/vscode-cpptools/issues/1817)
9-
* Fix dangling IntelliSense processes and stuck red flame. [#2075](https://github.com/Microsoft/vscode-cpptools/issues/2075), [#2077](https://github.com/Microsoft/vscode-cpptools/issues/2077), [#2169](https://github.com/Microsoft/vscode-cpptools/issues/2169)
28+
* Fix dangling IntelliSense processes. [#2075](https://github.com/Microsoft/vscode-cpptools/issues/2075), [#2169](https://github.com/Microsoft/vscode-cpptools/issues/2169)
1029
* Fix incorrect IntelliSense errors when class template argument deduction is used. [#2101](https://github.com/Microsoft/vscode-cpptools/issues/2101)
1130
* Skip automatic parsing of source files in Mac system framework paths. [#2156](https://github.com/Microsoft/vscode-cpptools/issues/2156)
1231
* Fix `Edit Configurations...` not working after `c_cpp_properties.json` is deleted. [#2214](https://github.com/Microsoft/vscode-cpptools/issues/2214)
@@ -15,8 +34,15 @@
1534
* Add `Change Configuration Provider...` command. [#2224](https://github.com/Microsoft/vscode-cpptools/issues/2224)
1635
* Fix out-of-memory crash with `#include` code actions when no folder is open. [#2225](https://github.com/Microsoft/vscode-cpptools/issues/2225)
1736
* Fix `intelliSenseMode` with custom config providers on Windows. [#2228](https://github.com/Microsoft/vscode-cpptools/issues/2228)
37+
* Fix formatting not working on Windows if the VC++ 2015 redist isn't installed. [#2232](https://github.com/Microsoft/vscode-cpptools/issues/2232)
1838
* Fix variables not resolving in `macFrameworkPath`. [#2234](https://github.com/Microsoft/vscode-cpptools/issues/2234)
1939
* Fix `Go to Definition` not working for macros followed by `.` or `->`. [#2245](https://github.com/Microsoft/vscode-cpptools/issues/2245)
40+
* Fix `#include` autocomplete with Mac framework headers. [#2251](https://github.com/Microsoft/vscode-cpptools/issues/2251)
41+
* Fix for debugging to support empty arguments for debuggee. [#2258](https://github.com/Microsoft/vscode-cpptools/issues/2258)
42+
* Fix `Go to Definition` bug (missing symbols outside the workspace). [#2281](https://github.com/Microsoft/vscode-cpptools/issues/2281)
43+
* Add a setting to silence configuration provider warnings. [#2292](https://github.com/Microsoft/vscode-cpptools/issues/2292)
44+
* Fix for debugging async Visual C++ causing debugger to hang.
45+
* Fix `main` snippet.
2046

2147
## Version 0.17.6: July 2, 2018
2248
* Fix the database icon getting stuck with recursive includes. [#2104](https://github.com/Microsoft/vscode-cpptools/issues/2104)
@@ -234,7 +260,7 @@
234260
## Version 0.13.0: September 25, 2017
235261
* Reference highlighting is now provided by the extension for both IntelliSense engines.
236262
* Parameter help is now provided by both IntelliSense engines.
237-
* Light bulbs (code actions) for #include errors now suggest potential paths to add to the `includePath` based on a recursive search of the `browse.path`. [#846](https://github.com/Microsoft/vscode-cpptools/issues/846)
263+
* Light bulbs (code actions) for `#include` errors now suggest potential paths to add to the `includePath` based on a recursive search of the `browse.path`. [#846](https://github.com/Microsoft/vscode-cpptools/issues/846)
238264
* Browse database now removes old symbols when `browse.path` changes. [#262](https://github.com/Microsoft/vscode-cpptools/issues/262)
239265
* Add `*` on new lines after a multiline comment with `/**` is started. [#579](https://github.com/Microsoft/vscode-cpptools/issues/579)
240266
* Fix `Go to Definition`, completion, and parameter hints for partially scoped members. [#635](https://github.com/Microsoft/vscode-cpptools/issues/635)

Extension/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This preview release of the extension adds language support for C/C++ to Visual
1111
* Quick Info (Hover)
1212
* Error Squiggles
1313
* Debugging
14-
* Support for debugging Windows (PDB, Mingw/Cygwin), Linux and OS X applications
14+
* Support for debugging Windows (PDB, MinGW/Cygwin), Linux and macOS applications
1515
* Line by line code stepping
1616
* Breakpoints (including conditional and function breakpoints)
1717
* Variable inspection

Extension/bin/msvc.64.darwin.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"defaults": [
3-
"--clang",
43
"--pack_alignment",
54
"8"
65
],

Extension/bin/msvc.64.intel.clang.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"defaults": [
3-
"--clang",
43
"--pack_alignment",
54
"8"
65
],

Extension/bin/msvc.64.linux.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"defaults": [
3-
"--clang",
43
"--pack_alignment",
54
"8"
65
],

Extension/c_cpp_properties.schema.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,11 @@
7171
}
7272
},
7373
"intelliSenseMode": {
74-
"description": "If set, it overrides the default mode used by the IntelliSense engine. Windows defaults to msvc-x64 and Linux/Mac default to clang-x64.",
74+
"description": "If set, it overrides the default mode used by the IntelliSense engine. Windows defaults to msvc-x64, Linux defaults to gcc-x64, and Mac default to clang-x64.",
7575
"type": "string",
7676
"enum": [
7777
"msvc-x64",
78+
"gcc-x64",
7879
"clang-x64",
7980
"${default}"
8081
]

Extension/cpp_snippets.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"main": {
6969
"prefix": "main",
70-
"body": "\nint main(int argc, char const *argv[])\n{\n\t${1:/* code */}\n\treturn 0;\n}\n",
70+
"body": "main(int argc, char const *argv[])\n{\n\t${1:/* code */}\n\treturn 0;\n}\n",
7171
"description": "Code snippet for main()",
7272
"scope": "source.c, source.objc, source.c++, source.objc++"
7373
},

Extension/gulpfile.js

+17-29
Original file line numberDiff line numberDiff line change
@@ -12,43 +12,31 @@ const mocha = require('gulp-mocha');
1212
const fs = require('fs');
1313
const optionsSchemaGenerator = require('./out/tools/GenerateOptionsSchema');
1414

15-
gulp.task('allTests', () => {
16-
gulp.start('unitTests');
17-
gulp.start('integrationTests');
18-
});
19-
2015
gulp.task('unitTests', () => {
21-
gulp.src('./out/test/unitTests', {read: false}).pipe(
22-
mocha({
23-
ui: "tdd"
24-
})
25-
).once('error', err => {
26-
process.exit(1);
27-
})
28-
.once('end', () => {
29-
process.exit();
30-
})
16+
env.set({
17+
CODE_TESTS_PATH: "./out/test/unitTests",
18+
});
19+
20+
gulp.src('./test/runVsCodeTestsWithAbsolutePaths.js', {read: false})
21+
.pipe(mocha({ ui: "tdd" }))
22+
.once('error', err => process.exit(1))
23+
.once('end', () => process.exit())
3124
});
3225

3326
gulp.task('integrationTests', () => {
3427
env.set({
3528
CODE_TESTS_PATH: "./out/test/integrationTests",
3629
CODE_TESTS_WORKSPACE: "./test/integrationTests/testAssets/SimpleCppProject"
37-
}
38-
);
39-
gulp.src('./test/runVsCodeTestsWithAbsolutePaths.js', {read: false}).pipe(
40-
mocha({
41-
ui: "tdd",
42-
delay: true
43-
})
44-
).once('error', err => {
45-
process.exit(1);
46-
})
47-
.once('end', () => {
48-
process.exit();
49-
})
30+
});
31+
32+
gulp.src('./test/runVsCodeTestsWithAbsolutePaths.js', {read: false})
33+
.pipe(mocha({ ui: "tdd" }))
34+
.once('error', err => process.exit(1))
35+
.once('end', () => process.exit())
5036
});
5137

38+
gulp.task('allTests', ['unitTests', 'integrationTests']);
39+
5240
/// Misc Tasks
5341
const allTypeScript = [
5442
'src/**/*.ts',
@@ -80,7 +68,7 @@ gulp.task('tslint', () => {
8068

8169
gulp.task('pr-check', () => {
8270
const packageJson = JSON.parse(fs.readFileSync('./package.json').toString());
83-
if (packageJson.activationEvents.length !== 1 && packageJson.activationEvents[0] !== '*') {
71+
if (packageJson.activationEvents.length !== 1 && packageJson.activationEvents[0] !== '*') {
8472
console.log('Please make sure to not check in package.json that has been rewritten by the extension activation. If you intended to have changes in package.json, please only check-in your changes. If you did not, please run `git checkout -- package.json`.');
8573
process.exit(1);
8674
}

Extension/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Extension/package.json

+45-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cpptools",
33
"displayName": "C/C++",
44
"description": "C/C++ IntelliSense, debugging, and code browsing.",
5-
"version": "0.17.7-insiders",
5+
"version": "0.17.8-insiders",
66
"publisher": "ms-vscode",
77
"preview": true,
88
"icon": "LanguageCCPP_color_128x.png",
@@ -154,6 +154,24 @@
154154
"minimum": 0.1,
155155
"maximum": 1
156156
},
157+
"C_Cpp.inactiveRegionForegroundColor": {
158+
"type": [
159+
"string",
160+
"null"
161+
],
162+
"default": null,
163+
"description": "Controls the font coloring of inactive preprocessor blocks. Input is in the form a hexadecimal color code or a valid Theme Color. If not set, this defaults to the syntax coloring scheme of the editor. This setting only applies when inactive region dimming is enabled.",
164+
"scope": "resource"
165+
},
166+
"C_Cpp.inactiveRegionBackgroundColor": {
167+
"type": [
168+
"string",
169+
"null"
170+
],
171+
"default": null,
172+
"description": "Controls the background coloring of inactive preprocessor blocks. Input is in the form a hexadecimal color code or a valid Theme Color. If not set, this defaults to transparent. This setting only applies when inactive region dimming is enabled.",
173+
"scope": "resource"
174+
},
157175
"C_Cpp.formatting": {
158176
"type": "string",
159177
"enum": [
@@ -201,6 +219,16 @@
201219
"description": "Controls whether parsing of the non-active workspace files uses sleeps to avoid using 100% CPU. The values highest/high/medium/low correspond to approximately 100/75/50/25% CPU usage.",
202220
"scope": "resource"
203221
},
222+
"C_Cpp.workspaceSymbols": {
223+
"type": "string",
224+
"enum": [
225+
"All",
226+
"Just My Code"
227+
],
228+
"default": "Just My Code",
229+
"description": "The symbols to include in the query results when 'Go to Symbol in Workspace' is invoked",
230+
"scope": "resource"
231+
},
204232
"C_Cpp.exclusionPolicy": {
205233
"type": "string",
206234
"enum": [
@@ -250,6 +278,16 @@
250278
"description": "Defines the editor behavior for when the Enter key is pressed inside a multiline or single line comment block.",
251279
"scope": "resource"
252280
},
281+
"C_Cpp.configurationWarnings": {
282+
"type": "string",
283+
"enum": [
284+
"Enabled",
285+
"Disabled"
286+
],
287+
"default": "Enabled",
288+
"description": "Determines whether pop up notifications will be shown when a configuration provider extension is unable to provide a configuration for a source file.",
289+
"scope": "resource"
290+
},
253291
"C_Cpp.default.includePath": {
254292
"type": [
255293
"array",
@@ -324,6 +362,7 @@
324362
],
325363
"enum": [
326364
"msvc-x64",
365+
"gcc-x64",
327366
"clang-x64"
328367
],
329368
"default": null,
@@ -1366,7 +1405,7 @@
13661405
"runtimeDependencies": [
13671406
{
13681407
"description": "C/C++ language components (Linux / x86_64)",
1369-
"url": "https://go.microsoft.com/fwlink/?linkid=2004596",
1408+
"url": "https://go.microsoft.com/fwlink/?linkid=2006256",
13701409
"platforms": [
13711410
"linux"
13721411
],
@@ -1380,7 +1419,7 @@
13801419
},
13811420
{
13821421
"description": "C/C++ language components (Linux / x86)",
1383-
"url": "https://go.microsoft.com/fwlink/?linkid=2004498",
1422+
"url": "https://go.microsoft.com/fwlink/?linkid=2006255",
13841423
"platforms": [
13851424
"linux"
13861425
],
@@ -1396,7 +1435,7 @@
13961435
},
13971436
{
13981437
"description": "C/C++ language components (OS X)",
1399-
"url": "https://go.microsoft.com/fwlink/?linkid=2004597",
1438+
"url": "https://go.microsoft.com/fwlink/?linkid=2006254",
14001439
"platforms": [
14011440
"darwin"
14021441
],
@@ -1407,7 +1446,7 @@
14071446
},
14081447
{
14091448
"description": "C/C++ language components (Windows)",
1410-
"url": "https://go.microsoft.com/fwlink/?linkid=2004598",
1449+
"url": "https://go.microsoft.com/fwlink/?linkid=2006362",
14111450
"platforms": [
14121451
"win32"
14131452
],
@@ -1528,4 +1567,4 @@
15281567
"binaries": []
15291568
}
15301569
]
1531-
}
1570+
}

Extension/src/Debugger/attachToProcess.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export class RemoteAttachPicker {
120120

121121
private getRemoteOSAndProcesses(pipeCmd: string): Promise<AttachItem[]> {
122122
// Commands to get OS and processes
123-
const command: string = `bash -c 'uname && if [ $(uname) == "Linux" ] ; then ${PsProcessParser.psLinuxCommand} ; elif [ $(uname) == "Darwin" ] ; ` +
123+
const command: string = `sh -c 'uname && if [ $(uname) == "Linux" ] ; then ${PsProcessParser.psLinuxCommand} ; elif [ $(uname) == "Darwin" ] ; ` +
124124
`then ${PsProcessParser.psDarwinCommand}; fi'`;
125125

126126
return execChildProcess(`${pipeCmd} "${command}"`, null, this._channel).then(output => {

0 commit comments

Comments
 (0)