-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Flesh out readme.md with build instructions and diagram. #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d755eb5
Add block diagram to readme.
BillyONeal 25bfc66
Add better build instructions to readme.
BillyONeal 3a1efc0
Remove potentially confusing comment.
BillyONeal 0b37d6f
First pass at readme review comments, and coalesce links.
BillyONeal 07a69de
Extract a couple links I missed, add periods, and attempt use of rela…
BillyONeal bb1f2f6
Back out relative paths for references to the wiki.
BillyONeal 77c0e80
CR feedback on the block diagram.
BillyONeal 33de4fc
Remove leading newline.
BillyONeal 92f7401
Attempt to see if newlines work in Github flavored markdown in backti…
BillyONeal bf6541f
Add missing .
BillyONeal ba06e52
Add CPU-vendor-specific hyphens.
BillyONeal 58005bf
Extract more URIs including relative ones, and add missing directory …
BillyONeal c108011
Remove newline and add Ninja version.
BillyONeal 30a8b46
Make extensions lowercase.
BillyONeal fa2640a
path => URI
BillyONeal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| ' Copyright (c) Microsoft Corporation. | ||
| ' | ||
| ' SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
|
||
| @startuml MSVC Library Block Diagram | ||
|
|
||
| package "Visual Studio" { | ||
|
|
||
| component STL [ | ||
| <b>STL</b> | ||
| This repo; provides C++ Standard Library headers, separately compiled | ||
| implementations of most of the iostreams functionality, and a few runtime | ||
| support components like std::exception_ptr. | ||
| ] | ||
|
|
||
| package VCRuntime as VCRuntimePackage { | ||
| component VCStartup [ | ||
| <b>VCStartup</b> | ||
| Provides compiler support mechanisms that live in each binary; such as | ||
| machinery to call constructors and destructors for global variables, the | ||
| entry point, and the /GS cookie. | ||
|
|
||
| Merged into static and import libraries of VCRuntime. | ||
| ] | ||
|
|
||
| component VCRuntime [ | ||
| <b>VCRuntime</b> | ||
| Provides compiler support mechanisms that can be shared between | ||
| binaries; code that the compiler calls on your behalf, such as | ||
| the C++ exception handling runtime, string.h intrinsics, math | ||
| intrinsics, and declarations for CPU-vendor-specific intrinsics. | ||
| ] | ||
|
|
||
| [VCStartup] --> [VCRuntime] | ||
| } | ||
| } | ||
|
|
||
| package "Windows SDK" { | ||
| component UCRT [ | ||
| <b>Universal CRT</b> | ||
| Windows component that provides C library support, such as printf, | ||
| C locales, and some POSIX-like shims for the Windows API, like _stat. | ||
| ] | ||
| } | ||
|
|
||
| STL --> UCRT | ||
| STL --> VCRuntimePackage | ||
| VCRuntime --> UCRT | ||
|
|
||
| @enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.