File tree Expand file tree Collapse file tree 5 files changed +12
-16
lines changed Expand file tree Collapse file tree 5 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -1336,10 +1336,7 @@ module std [system] {
1336
1336
module concepts { header "__format/concepts.h" }
1337
1337
module container_adaptor { header "__format/container_adaptor.h" }
1338
1338
module enable_insertable { header "__format/enable_insertable.h" }
1339
- module escaped_output_table {
1340
- header "__format/escaped_output_table.h"
1341
- export std.format.escaped_output_table // TODO: Workaround for https://github.com/llvm/llvm-project/issues/120108
1342
- }
1339
+ module escaped_output_table { header "__format/escaped_output_table.h" }
1343
1340
module extended_grapheme_cluster_table { header "__format/extended_grapheme_cluster_table.h" }
1344
1341
module fmt_pair_like { header "__format/fmt_pair_like.h" }
1345
1342
module format_arg { header "__format/format_arg.h" }
@@ -1376,10 +1373,7 @@ module std [system] {
1376
1373
module range_format { header "__format/range_format.h" }
1377
1374
module range_formatter { header "__format/range_formatter.h" }
1378
1375
module unicode { header "__format/unicode.h" }
1379
- module width_estimation_table {
1380
- header "__format/width_estimation_table.h"
1381
- export std.format.width_estimation_table // TODO: Workaround for https://github.com/llvm/llvm-project/issues/120108
1382
- }
1376
+ module width_estimation_table { header "__format/width_estimation_table.h" }
1383
1377
module write_escaped { header "__format/write_escaped.h" }
1384
1378
1385
1379
header "format"
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ struct linux {
34
34
} // namespace __stacktrace
35
35
_LIBCPP_END_NAMESPACE_STD
36
36
37
- #include " stacktrace/config.h"
37
+ #include < __config>
38
+ #include < __config_site>
38
39
39
40
#if defined(__linux__)
40
41
Original file line number Diff line number Diff line change 14
14
#include < cstddef>
15
15
#include < cstdlib>
16
16
17
- #include " stacktrace/config.h"
17
+ #include < __config>
18
+ #include < __config_site>
18
19
#include < __stacktrace/base.h>
19
20
20
21
_LIBCPP_BEGIN_NAMESPACE_STD
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " stacktrace/config.h"
9
+ #include < __config>
10
+ #include < __config_site>
10
11
11
- #if defined(_LIBCPP_STACKTRACE_CAN_SPAWN_TOOLS)
12
+ #if __has_include(<spawn.h>) && _LIBCPP_STACKTRACE_ALLOW_TOOLS_AT_RUNTIME
12
13
13
- # include < __config>
14
- # include < __config_site>
15
14
# include < cassert>
16
15
# include < cerrno>
17
16
# include < csignal>
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " stacktrace/config.h"
9
+ #include < __config>
10
+ #include < __config_site>
10
11
11
- #if defined(_LIBCPP_STACKTRACE_UNWIND_IMPL )
12
+ #if __has_include(<unwind.h> )
12
13
13
14
# include < unwind.h>
14
15
You can’t perform that action at this time.
0 commit comments