Skip to content

Commit 17f90e5

Browse files
authored
Merge branch 'main' into seanmcm/removeAlwaysAuth
2 parents ed9ff15 + a807d57 commit 17f90e5

31 files changed

+39
-80
lines changed

Extension/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# C/C++ for Visual Studio Code Changelog
22

3+
## Version 1.24.3: March 18, 2025
4+
### Enhancements
5+
* Add detected test frameworks to the Copilot context when `#cpp` is used. [PR #13285](https://github.com/microsoft/vscode-cpptools/pull/13285)
6+
* Update clang-tidy and clang-format from 19.1.7 to 20.1.0. [PR #13348](https://github.com/microsoft/vscode-cpptools/pull/13348)
7+
* Remove some unnecessary files from the vsix. [PR #13368](https://github.com/microsoft/vscode-cpptools/pull/13368)
8+
* Improve the logging when a non-existent path is used for indexing. [PR #13372](https://github.com/microsoft/vscode-cpptools/pull/13372)
9+
* Remove the `C_Cpp.updateChannel` setting. [PR #13376](https://github.com/microsoft/vscode-cpptools/pull/13376)
10+
* Switch to only passing the root framework to clang-tidy.
11+
12+
### Bug Fixes
13+
* Fix a bug with symlink resolving with `compile_commands.json`. [#13321](https://github.com/microsoft/vscode-cpptools/issues/13321)
14+
* Fix a performance issue on macOS when processing `compile_commands.json` with a lot of include paths. [#13366](https://github.com/microsoft/vscode-cpptools/issues/13366)
15+
* Fix some localization bugs. [PR #13373](https://github.com/microsoft/vscode-cpptools/pull/13373)
16+
* Fix IntelliSense showing the wrong size of objects. [#13375](https://github.com/microsoft/vscode-cpptools/issues/13375)
17+
* Fix a `${workspaceFolder}/*` include path not being used as a non-recursive browse path.
18+
* Fix some potential IntelliSense process crashes when processing Copilot snippets.
19+
* Fix a regression with compiler query caching in the database.
20+
321
## Version 1.24.2: March 6, 2025
422
### Enhancements
523
* Various improvements to Copilot snippets. [PR #13296](https://github.com/microsoft/vscode-cpptools/pull/13296)

Extension/bin/linux.clang.arm.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.arm64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.x64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.x86.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.gcc.arm.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

Extension/bin/linux.gcc.arm64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

Extension/bin/linux.gcc.x64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

Extension/bin/linux.gcc.x86.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

Extension/bin/macos.clang.arm.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-D__APPLE__=1",
75
"-D__MACH__=1",
86
"-D__arm__=1",

0 commit comments

Comments
 (0)