-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[cxx-interop] Use VFS to inject modulemap into libstdc++ installation #58843
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,79 @@ | ||
#include <algorithm> | ||
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. Why did these have to change? Is it ever going to be a problem for users if they use angle brackets in their includes? 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. It'll work fine with angle brackets as well. I just wanted to make it more clear that both the modulemap & the header are now located in the same directory as the stdlib headers, so there's no need to use angle brackets. |
||
#include <bitset> | ||
#include <complex> | ||
#include <deque> | ||
#include <exception> | ||
#include <fstream> | ||
#include <functional> | ||
#include <iomanip> | ||
#include <ios> | ||
#include <iosfwd> | ||
#include <iostream> | ||
#include <istream> | ||
#include <iterator> | ||
#include <limits> | ||
#include <list> | ||
#include <locale> | ||
#include <map> | ||
#include <memory> | ||
#include <new> | ||
#include <numeric> | ||
#include <ostream> | ||
#include <queue> | ||
#include <set> | ||
#include <sstream> | ||
#include <stack> | ||
#include <stdexcept> | ||
#include <streambuf> | ||
#include <string> | ||
#include <utility> | ||
#include <typeinfo> | ||
#include <valarray> | ||
#include <vector> | ||
#include <array> | ||
#include <atomic> | ||
#include <chrono> | ||
#include <codecvt> | ||
#include <condition_variable> | ||
#include <forward_list> | ||
#include <future> | ||
#include <initializer_list> | ||
#include <mutex> | ||
#include <random> | ||
#include <ratio> | ||
#include <regex> | ||
#include <scoped_allocator> | ||
#include <system_error> | ||
#include <thread> | ||
#include <tuple> | ||
#include <typeindex> | ||
#include <type_traits> | ||
#include <unordered_map> | ||
#include <unordered_set> | ||
#include "algorithm" | ||
#include "bitset" | ||
#include "complex" | ||
#include "deque" | ||
#include "exception" | ||
#include "fstream" | ||
#include "functional" | ||
#include "iomanip" | ||
#include "ios" | ||
#include "iosfwd" | ||
#include "iostream" | ||
#include "istream" | ||
#include "iterator" | ||
#include "limits" | ||
#include "list" | ||
#include "locale" | ||
#include "map" | ||
#include "memory" | ||
#include "new" | ||
#include "numeric" | ||
#include "ostream" | ||
#include "queue" | ||
#include "set" | ||
#include "sstream" | ||
#include "stack" | ||
#include "stdexcept" | ||
#include "streambuf" | ||
#include "string" | ||
#include "utility" | ||
#include "typeinfo" | ||
#include "valarray" | ||
#include "vector" | ||
#include "array" | ||
#include "atomic" | ||
#include "chrono" | ||
#include "codecvt" | ||
#include "condition_variable" | ||
#include "forward_list" | ||
#include "future" | ||
#include "initializer_list" | ||
#include "mutex" | ||
#include "random" | ||
#include "ratio" | ||
#include "regex" | ||
#include "scoped_allocator" | ||
#include "system_error" | ||
#include "thread" | ||
#include "tuple" | ||
#include "typeindex" | ||
#include "type_traits" | ||
#include "unordered_map" | ||
#include "unordered_set" | ||
|
||
// C++17 and newer: | ||
|
||
#if __has_include(<any>) | ||
#include <any> | ||
#if __has_include("any") | ||
#include "any" | ||
#endif | ||
#if __has_include(<charconv>) | ||
#include <charconv> | ||
#if __has_include("charconv") | ||
#include "charconv" | ||
#endif | ||
#if __has_include(<execution>) | ||
#include <execution> | ||
#if __has_include("execution") | ||
#include "execution" | ||
#endif | ||
#if __has_include(<filesystem>) | ||
#include <filesystem> | ||
#if __has_include("filesystem") | ||
#include "filesystem" | ||
#endif | ||
#if __has_include(<memory_resource>) | ||
#include <memory_resource> | ||
#if __has_include("memory_resource") | ||
#include "memory_resource" | ||
#endif | ||
#if __has_include(<optional>) | ||
#include <optional> | ||
#if __has_include("optional") | ||
#include "optional" | ||
#endif | ||
#if __has_include(<string_view>) | ||
#include <string_view> | ||
#if __has_include("string_view") | ||
#include "string_view" | ||
#endif | ||
#if __has_include(<variant>) | ||
#include <variant> | ||
#if __has_include("variant") | ||
#include "variant" | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ Here