Skip to content

Commit d3caa64

Browse files
author
mikeblome
committed
fixed titles and links after moving files
1 parent b6c274f commit d3caa64

File tree

267 files changed

+301
-305
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+301
-305
lines changed

docs/build/TOC.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
### [Specify Release Configuration Settings, Create New Project From Existing Code Files Wizard](specify-release-configuration.md)
1919
# [CMake projects](cmake-tools-for-visual-cpp.md)
2020
# [Open Folder projects](non-msbuild-projects.md)
21+
# [Precompiled header files](creating-precompiled-header-files.md)
2122
# [C++ release builds](release-builds.md)
2223
## [How to: Create a Release Build](how-to-create-a-release-build.md)
2324
## [Common Problems When Creating a Release Build](common-problems-when-creating-a-release-build.md)

docs/build/building-on-the-command-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Describes how to use these compiler options to use a Debug or Release run-time l
173173
[C/C++ Compiler Options](reference/compiler-options.md)<br/>
174174
Provides links to articles that discuss the C and C++ compiler options and CL.exe.
175175

176-
[Linker Options](reference/linker-options.md)<br/>
176+
[MSVC Linker Options](reference/linker-options.md)<br/>
177177
Provides links to articles that discuss the linker options and LINK.exe.
178178

179179
[C/C++ Build Tools](reference/c-cpp-build-tools.md)<br/>

docs/build/common-visual-cpp-64-bit-migration-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The %x (hex `int` format) `printf` modifier will not work as expected on a 64-bi
2626

2727
For more information, see:
2828

29-
- [Compiler Options](reference/compiler-options.md)
29+
- [MSVC Compiler Options](reference/compiler-options.md)
3030

3131
- [Migration Tips](/windows/desktop/WinProg64/migration-tips)
3232

docs/build/reference/creating-precompiled-header-files.md renamed to docs/build/creating-precompiled-header-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ NMAKE
210210
NMAKE DEBUG=0
211211
```
212212

213-
For more information on makefiles, see [NMAKE Reference](nmake-reference.md). Also see [Compiler Options](compiler-options.md) and the [Linker Options](linker-options.md).
213+
For more information on makefiles, see [NMAKE Reference](nmake-reference.md). Also see [MSVC Compiler Options](compiler-options.md) and the [MSVC Linker Options](linker-options.md).
214214

215215
## Example Code for PCH
216216

@@ -299,4 +299,4 @@ int main( void )
299299
## See Also
300300

301301
[C/C++ Building Reference](c-cpp-building-reference.md)<br/>
302-
[Compiler Options](compiler-options.md)
302+
[MSVC Compiler Options](compiler-options.md)

docs/build/improving-compiler-throughput.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Use precompiled header files to build your project faster. This is important if
1010

1111
See [/Yc](reference/yc-create-precompiled-header-file.md) and [/Yu](reference/yu-use-precompiled-header-file.md).
1212

13-
For more information on precompiled headers, see [Creating Precompiled Header Files](reference/creating-precompiled-header-files.md).
13+
For more information on precompiled headers, see [Creating Precompiled Header Files](creating-precompiled-header-files.md).
1414

1515
## See Also
1616

docs/build/reference/TOC.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
### [Project and solution files](project-and-solution-files.md)
77
### [C++ project templates](visual-cpp-project-types.md)
88
### [C++ new item templates](using-visual-cpp-add-new-item-templates.md)
9-
### [Precompiled header files](creating-precompiled-header-files.md)
109
### [Resource files](resource-files-cpp.md)
1110
### [Files Created for CLR Projects](files-created-for-clr-projects.md)
1211
### [ATL Program or Control Source and Header Files](atl-program-or-control-source-and-header-files.md)
@@ -43,15 +42,15 @@
4342
#### [HLSL Property Pages: General](hlsl-property-pages-general.md)
4443
#### [HLSL Property Pages: Advanced](hlsl-property-pages-advanced.md)
4544
#### [HLSL Property Pages: Output Files](hlsl-property-pages-output-files.md)
46-
# [Compiling a C/C++ Program](compiling-a-c-cpp-program.md)
47-
## [Compiler Command-Line Syntax](compiler-command-line-syntax.md)
45+
# [MSVC Compiler Reference](compiling-a-c-cpp-program.md)
46+
## [MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md)
4847
### [CL Filename Syntax](cl-filename-syntax.md)
4948
### [Order of CL Options](order-of-cl-options.md)
5049
### [Return Value of cl.exe](return-value-of-cl-exe.md)
5150
## [CL Environment Variables](cl-environment-variables.md)
5251
## [CL Command Files](cl-command-files.md)
5352
## [CL Invokes the Linker](cl-invokes-the-linker.md)
54-
## [Compiler Options](compiler-options.md)
53+
## [MSVC Compiler Options](compiler-options.md)
5554
### [Compiler Options Listed by Category](compiler-options-listed-by-category.md)
5655
### [Compiler Options Listed Alphabetically](compiler-options-listed-alphabetically.md)
5756
#### [@ (Specify a Compiler Response File)](at-specify-a-compiler-response-file.md)
@@ -202,9 +201,8 @@
202201
#### [/Zp (Struct Member Alignment)](zp-struct-member-alignment.md)
203202
#### [/Zs (Syntax Check Only)](zs-syntax-check-only.md)
204203
#### [/ZW (Windows Runtime Compilation)](zw-windows-runtime-compilation.md)
205-
## [Creating Precompiled Header Files](creating-precompiled-header-files.md)
206-
# [Linking](linking.md)
207-
## [Linker Options](linker-options.md)
204+
# [MSVC Linker Reference](linking.md)
205+
## [MSVC Linker Options](linker-options.md)
208206
### [Compiler-Controlled LINK Options](compiler-controlled-link-options.md)
209207
### [LINK Input Files](link-input-files.md)
210208
#### [.Obj Files as Linker Input](dot-obj-files-as-linker-input.md)
@@ -345,7 +343,7 @@
345343
#### [Unloading a Delay-Loaded DLL](unloading-a-delay-loaded-dll.md)
346344
### [Developing Your Own Helper Function](developing-your-own-helper-function.md)
347345
# [Unicode Support in the Compiler and Linker](unicode-support-in-the-compiler-and-linker.md)
348-
# [C/C++ Build Tools](c-cpp-build-tools.md)
346+
# [Additional MSVC build tools](c-cpp-build-tools.md)
349347
## [NMAKE Reference](nmake-reference.md)
350348
### [NMAKE projects in Visual Studio](creating-a-makefile-project.md)
351349
### [Running NMAKE](running-nmake.md)

docs/build/reference/ai-specify-metadata-directories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Only one directory can be passed to an **/AI** invocation. Specify one **/AI** o
3636

3737
## See Also
3838

39-
[Compiler Options](compiler-options.md)<br/>
39+
[MSVC Compiler Options](compiler-options.md)<br/>
4040
[Compiler Command Line Syntax](compiler-command-line-syntax.md)<br/>
4141
[#using Directive](../../preprocessor/hash-using-directive-cpp.md)

docs/build/reference/align-section-alignment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ The alignment value that you specify cannot be smaller than the largest section
4040
## See also
4141

4242
[Setting Linker Options](linking.md)<br/>
43-
[Linker Options](linker-options.md)
43+
[MSVC Linker Options](linker-options.md)

docs/build/reference/allowbind-prevent-dll-binding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ You can edit an existing DLL for /ALLOWBIND functionality with the [/ALLOWBIND](
3232
## See Also
3333

3434
[Setting Linker Options](linking.md)<br/>
35-
[Linker Options](linker-options.md)<br/>
35+
[MSVC Linker Options](linker-options.md)<br/>
3636
[BindImage function](/windows/desktop/api/imagehlp/nf-imagehlp-bindimage)<br/>
3737
[BindImageEx function](/windows/desktop/api/imagehlp/nf-imagehlp-bindimageex)

docs/build/reference/allowisolation-manifest-lookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ For more information, see [Manifest Files Reference](/windows/desktop/SbsCs/mani
3838
## See Also
3939

4040
[Setting Linker Options](linking.md)<br/>
41-
[Linker Options](linker-options.md)
41+
[MSVC Linker Options](linker-options.md)

0 commit comments

Comments
 (0)