diff options
| author | Arthur LAURENT <[email protected]> | 2024-07-12 18:15:26 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-07-12 18:15:26 +0200 |
| commit | 59d4566fc7a88cb53f00b29bb7e5d5ceb7608858 (patch) | |
| tree | 3356734f84b178707dea9fd1b5a7d41881c99f7d | |
| parent | 008d6a92e171d9ef1d8a62fca1e4900ed5faa48f (diff) | |
add proper warning for std module detection
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/clang/compiler_support.lua | 1 | ||||
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/msvc/compiler_support.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua b/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua index 7bb0ac97d..7de732bdd 100644 --- a/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua +++ b/xmake/rules/c++/modules/modules_support/clang/compiler_support.lua @@ -300,6 +300,7 @@ function get_stdmodules(target) end end end + wprint("std and std.compat modules not found ! disabling them for the build") end function get_bmi_extension() diff --git a/xmake/rules/c++/modules/modules_support/msvc/compiler_support.lua b/xmake/rules/c++/modules/modules_support/msvc/compiler_support.lua index 69f677706..e08eadbfb 100644 --- a/xmake/rules/c++/modules/modules_support/msvc/compiler_support.lua +++ b/xmake/rules/c++/modules/modules_support/msvc/compiler_support.lua @@ -146,6 +146,7 @@ function get_stdmodules(target) end end end + wprint("std and std.compat modules not found ! disabling them for the build") end function get_bmi_extension() |
