diff options
| author | Arthur LAURENT <[email protected]> | 2024-01-23 20:36:55 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-01-26 18:20:59 +0100 |
| commit | 35f41b6dcf27d0fdcd2f112e086115720c2246cd (patch) | |
| tree | 043ea9e5daa8c660b913c2a1bf98e4a3cc6a7d2b | |
| parent | d9146626a3e55616446246a2a12166cc12ff806a (diff) | |
fix gcc module support
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/gcc/compiler_support.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/c++/modules/modules_support/gcc/compiler_support.lua b/xmake/rules/c++/modules/modules_support/gcc/compiler_support.lua index 7dab1f4da..60566df51 100644 --- a/xmake/rules/c++/modules/modules_support/gcc/compiler_support.lua +++ b/xmake/rules/c++/modules/modules_support/gcc/compiler_support.lua @@ -100,7 +100,7 @@ function get_target_module_mapperpath(target) end -- not supported atm -function get_stdmodules(_) +function get_stdmodules(target) if target:policy("build.c++.modules.std") then end return {} |
