diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-11 16:28:35 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-11 16:28:35 +0200 |
| commit | 6b69dfdfb023221a250e3f1419ece29a78841b34 (patch) | |
| tree | 304b0b5190e21c37562ff76b873308131ac5f624 /xmake/rules/c++/modules | |
| parent | 35d6036d26bc982be7f03e179919d96110236e50 (diff) | |
(C++ modules support) normalize gcc std module paths
Diffstat (limited to 'xmake/rules/c++/modules')
| -rw-r--r-- | xmake/rules/c++/modules/gcc/support.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/c++/modules/gcc/support.lua b/xmake/rules/c++/modules/gcc/support.lua index 75bb91030..25b664b86 100644 --- a/xmake/rules/c++/modules/gcc/support.lua +++ b/xmake/rules/c++/modules/gcc/support.lua @@ -183,7 +183,7 @@ function get_stdmodules(target) if not path.is_absolute(module_file_path) then module_file_path = path.join(modules_json_dir, module_file_path) end - table.insert(std_module_files, module_file_path) + table.insert(std_module_files, path.normalize(module_file_path)) end return std_module_files end |
