[libcxx-commits] [libcxx] WIP try tweaking the threading support module (PR #122506)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jan 10 10:29:35 PST 2025
https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/122506
None
>From 429fdbf131a7064571add46b071343a5e8cd8a38 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Fri, 10 Jan 2025 13:29:14 -0500
Subject: [PATCH] WIP try tweaking the threading support module
---
libcxx/include/module.modulemap | 2 +-
libcxx/test/libcxx/clang_modules_include.gen.py | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap
index 07ab5649ae45cb..a9508668005d0c 100644
--- a/libcxx/include/module.modulemap
+++ b/libcxx/include/module.modulemap
@@ -1965,7 +1965,7 @@ module std [system] {
module support_impl {
textual header "__thread/support/c11.h"
textual header "__thread/support/external.h"
- textual header "__thread/support/pthread.h"
+ // textual header "__thread/support/pthread.h"
textual header "__thread/support/windows.h"
}
diff --git a/libcxx/test/libcxx/clang_modules_include.gen.py b/libcxx/test/libcxx/clang_modules_include.gen.py
index 379ac22c8f47f5..b7cd27be5ae5a8 100644
--- a/libcxx/test/libcxx/clang_modules_include.gen.py
+++ b/libcxx/test/libcxx/clang_modules_include.gen.py
@@ -58,6 +58,7 @@
{lit_header_undeprecations.get(header, '')}
#include <{header}>
+#include <pthread.h>
"""
)
More information about the libcxx-commits
mailing list