-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Make module std; and module std.compat; work with Clang
#5982
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
Open
cpplearner
wants to merge
11
commits into
microsoft:main
Choose a base branch
from
cpplearner:clang-modules
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5c99c5f
Add Clang diagnostic pragmas in standard library modules
cpplearner c56c792
Workaround LLVM-37969
cpplearner f4d12c2
Workaround LLVM-158341
cpplearner 5bd397b
Rework Clang detection
cpplearner f3b8e1b
Merge branch 'main' into clang-modules
cpplearner 25211f9
Add workaround for Clang 22 `-WTU-local-entity-exposure`
cpplearner bbc568e
Use `-fmodule-output`
cpplearner e44086b
Remove workaround for LLVM-158341
cpplearner 935424d
Merge branch 'microsoft:main' into clang-modules
cpplearner 1f96b51
Apply suggestions from code review
cpplearner 44539c4
Fix
cpplearner 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
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
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
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
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 |
|---|---|---|
|
|
@@ -3,18 +3,25 @@ | |
|
|
||
| RUNALL_INCLUDE ..\..\universal_prefix.lst | ||
| RUNALL_CROSSLIST | ||
| * PM_CL="/w14365 /D_ENFORCE_FACET_SPECIALIZATIONS=1 /Zc:preprocessor" | ||
| * PM_CL="/w14365 /D_ENFORCE_FACET_SPECIALIZATIONS=1" | ||
| RUNALL_CROSSLIST | ||
| * PM_CL="/w14640 /Zc:threadSafeInit- /EHsc /DTEST_STANDARD=20 /std:c++20" | ||
| * PM_CL="/w14640 /Zc:threadSafeInit- /EHsc /DTEST_STANDARD=23 /std:c++latest" | ||
| RUNALL_CROSSLIST | ||
| * PM_CL="/MD" | ||
| * PM_CL="/MDd" | ||
| * PM_CL="/MT" | ||
| * PM_CL="/MTd" | ||
| * PM_CL="/MDd /analyze:only /analyze:autolog-" | ||
| * PM_CL="/MDd /GR- /D_HAS_STATIC_RTTI=0" | ||
| * PM_CL="/MDd /utf-8" | ||
| RUNALL_CROSSLIST | ||
| PM_CL="" | ||
| ASAN PM_CL="-fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MD /Zc:preprocessor" | ||
| ASAN PM_CL="/MD /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MDd /Zc:preprocessor" | ||
| ASAN PM_CL="/MDd /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MT /Zc:preprocessor" | ||
| ASAN PM_CL="/MT /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MTd /Zc:preprocessor" | ||
| ASAN PM_CL="/MTd /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MDd /analyze:only /analyze:autolog- /Zc:preprocessor" | ||
| ASAN PM_CL="/MDd /analyze:only /analyze:autolog- /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MDd /GR- /D_HAS_STATIC_RTTI=0 /Zc:preprocessor" | ||
| ASAN PM_CL="/MDd /GR- /D_HAS_STATIC_RTTI=0 /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_CL="/MDd /utf-8 /Zc:preprocessor" | ||
| ASAN PM_CL="/MDd /utf-8 /Zc:preprocessor -fsanitize=address /Zi" PM_LINK="/debug" | ||
| PM_COMPILER="clang-cl" PM_CL="-fmodule-output -fprebuilt-module-path=. -Wno-unqualified-std-cast-call /MD" | ||
| PM_COMPILER="clang-cl" PM_CL="-fmodule-output -fprebuilt-module-path=. -Wno-unqualified-std-cast-call /MTd" | ||
| PM_COMPILER="clang-cl" PM_CL="-fmodule-output -fprebuilt-module-path=. -Wno-unqualified-std-cast-call /MT" | ||
|
Comment on lines
+25
to
+27
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
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.