diff options
| author | ruki <[email protected]> | 2025-09-26 22:14:46 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-26 22:14:46 +0800 |
| commit | 7c9fbf87ba1d4b48fb111bf3cc4090b5ebcf90b3 (patch) | |
| tree | 94e3d5a47e819b573ada0c418846f70fe1224ae6 /tests/projects/c++/modules/test_stdmodules.lua | |
| parent | f6e00b1cc570b023c618f3753f9e0c91b82df652 (diff) | |
| parent | bcc3c5617baad62989a45a44aa2890fda5eba0f3 (diff) | |
Merge pull request #6809 from Arthapz/fix-stdmodule-priority
fix(C++ modules) fix stdmodule priority
Diffstat (limited to 'tests/projects/c++/modules/test_stdmodules.lua')
| -rw-r--r-- | tests/projects/c++/modules/test_stdmodules.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/test_stdmodules.lua b/tests/projects/c++/modules/test_stdmodules.lua index c9062eb96..291494b38 100644 --- a/tests/projects/c++/modules/test_stdmodules.lua +++ b/tests/projects/c++/modules/test_stdmodules.lua @@ -6,6 +6,7 @@ MSVC_MIN_VER = "14.35" function main(_) local clang_options = {stdmodule = true, compiler = "clang", version = CLANG_MIN_VER} + local gcc_options = {stdmodule = true, compiler = "gcc", version = GCC_MIN_VER} -- latest mingw gcc 15.1 is broken -- error: F:/msys64/mingw64/include/c++/15.1.0/shared_mutex:105:3: error: 'int std::__glibcxx_rwlock_timedrdlock(pthread_rwlock_t*, const timespec*)' exposes TU-local entity 'int pthread_rwlock_timedrdlock(pthread_rwlock_t*, const timespec*)' -- 105 | __glibcxx_rwlock_timedrdlock (pthread_rwlock_t *__rwlock, |
