Skip to content

Commit 686b4a3

Browse files
TylerMSFTTylerMSFT
authored andcommitted
tune up wording about sdk version needed, and remove reference to a insider build sdk that is no longer available
1 parent 6b98bf8 commit 686b4a3

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

docs/c-language/alignment-c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Alignment (C11)"
33
description: "Describes Microsoft Visual C type alignment"
4-
ms.date: 06/22/2021
4+
ms.date: 06/29/2021
55
helpviewer_keywords: ["_Alignof keyword [C]", "_Alignas keyword [C]", "memory, alignment"]
66
---
77
# Alignment (C11)
@@ -123,9 +123,9 @@ int main()
123123

124124
## Requirements
125125

126-
[`/std:c11`](../build/reference/std-specify-language-standard-version.md) or later is required.
126+
Compile with [`/std:c11`](../build/reference/std-specify-language-standard-version.md).
127127

128-
Windows SDK 10.0.20348.0 (version 2104) or later. You can download the latest SDK from [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/). For more information, and instructions on how to install and use the SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
128+
Windows SDK 10.0.20348.0 (version 2104) or later. See [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/) to download the latest SDK. For instructions to install and use the SDK for C11 and C17 development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
129129

130130
## See also
131131

docs/c-language/generic_selection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Generic selection (C11)"
33
description: "Describes the C11 _Generic keyword used in the Microsoft Visual C compiler"
4-
ms.date: "6/28/2021"
4+
ms.date: "6/29/2021"
55
helpviewer_keywords: ["_Generic keyword [C]"]
66
---
77

@@ -72,9 +72,9 @@ Type name: double
7272

7373
## Requirements
7474

75-
[std:c++11](../build/reference/std-specify-language-standard-version.md) or later is required.
75+
Compile with [`/std:c11`](../build/reference/std-specify-language-standard-version.md).
7676

77-
Windows SDK 10.0.20348.0 (version 2104) or later. You can download the latest SDK from [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk). For more information, and instructions on how to install and use the SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
77+
Windows SDK 10.0.20348.0 (version 2104) or later. See [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/) to download the latest SDK. For instructions to install and use the SDK for C11 and C17 development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
7878

7979
## See also
8080

docs/c-language/static-assert-c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "_Static_assert keyword and static_assert macro (C11)"
33
description: "Describes the C11 _Static_assert keyword and the C11 static_assert macro."
4-
ms.date: 06/22/2021
4+
ms.date: 06/29/2021
55
f1_keywords: ["static_assert_c", "_Static_assert"]
66
helpviewer_keywords: ["assertions [C], _Static_assert, static_assert"]
77
---
@@ -71,9 +71,9 @@ int main()
7171
|-------------|---------------------|
7272
|**`static_assert`**|\<assert.h>|
7373

74-
[`/std:c11`](../build/reference/std-specify-language-standard-version.md) or later is required.
74+
Compile with [`/std:c11`](../build/reference/std-specify-language-standard-version.md).
7575

76-
Windows SDK 10.0.20348.0 (version 2104) or later. You can download the latest SDK from [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/). For more information, and instructions on how to install and use the SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
76+
Windows SDK 10.0.20348.0 (version 2104) or later. See [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/) to download the latest SDK. For instructions to install and use the SDK for C11 and C17 development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
7777

7878
## See also
7979

docs/c-runtime-library/tgmath.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ The following table lists the macros that are available in `<tgmath.h>` and what
8585

8686
## Requirements
8787

88-
[std:c++11](../build/reference/std-specify-language-standard-version.md) or later is required.
88+
Compile with [`/std:c11`](../build/reference/std-specify-language-standard-version.md).
8989

90-
Windows SDK 10.0.20348.0 (version 2104) or later. You can download the latest SDK from [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/). For more information, and instructions on how to install and use the SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
90+
Windows SDK 10.0.20348.0 (version 2104) or later. See [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-10-sdk/) to download the latest SDK. For instructions to install and use the SDK for C11 and C17 development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md).
9191

9292
## See also
9393

docs/overview/install-c17-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install C11 and C17 support in Visual Studio
33
description: "Install Windows SDK and CRT support for C11 and C17 in Visual Studio"
4-
ms.date: 06/22/2021
4+
ms.date: 06/29/2021
55
helpviewer_keywords: ["Install Windows SDK support for C"]
66
---
77
# Install C11 and C17 support in Visual Studio
@@ -16,7 +16,7 @@ Support for C11 and C17 standards requires Visual Studio 2019 version 16.8 or la
1616

1717
Support for C11 and C17 standards is available starting in Visual Studio 2019 version 16.8. Support requires an updated Universal C Runtime (UCRT) and the latest Windows SDK updates, to work properly with the conforming preprocessor ([`/Zc:preprocessor`](../build/reference/zc-preprocessor.md)).
1818

19-
Windows SDK releases correspond with Windows OS releases. C11 and C17 support requires Windows SDK 10.0.20201.0 or later. Windows SDK 10.0.20348.0 (version 2104) or later is recommended. Normally, the Windows SDK is an installable option in the Individual Components tab in the Visual Studio Installer. That's the recommended way to update the SDK for use with Visual Studio. However, at the time of writing, the latest Windows SDK isn't available in the Visual Studio Installer. You can follow these steps to set up the latest SDK and build C11 or C17 code in Visual Studio or at the command line.
19+
Windows SDK releases correspond with Windows OS releases. C11 and C17 support requires Windows SDK 10.0.20348.0 (version 2104) or later. Normally, the Windows SDK is an installable option in the Individual Components tab in the Visual Studio Installer. That's the recommended way to update the SDK for use with Visual Studio. However, at the time of writing, the latest Windows SDK isn't available in the Visual Studio Installer. You can follow these steps to set up the latest SDK and build C11 or C17 code in Visual Studio or at the command line.
2020

2121
## Prerequisites
2222

0 commit comments

Comments
 (0)