diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-11 16:21:52 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-11 16:21:59 +0200 |
| commit | 2c161e887cb5aeb6e2e3d4d0871a7380403e5e09 (patch) | |
| tree | a480fc8e8a22c3d5d1383e615c6b9a084e03039e /xmake/core | |
| parent | 22fcfc64078f4ad04a9ecf5af30adaf7dae199e5 (diff) | |
(C++ modules support) default cxx11abi to true when gcc version is >= 15
Diffstat (limited to 'xmake/core')
| -rw-r--r-- | xmake/core/project/policy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua index cad9fd4cd..0c79be649 100644 --- a/xmake/core/project/policy.lua +++ b/xmake/core/project/policy.lua @@ -101,7 +101,7 @@ function policy.policies() -- If in the future, gcc can support it well, we'll turn it on by default -- https://github.com/xmake-io/xmake/issues/3855 ["build.c++.modules.gcc.cxx11abi"] = {description = "Force to enable new cxx11 abi in C++ modules for gcc.", type = "boolean"}, - ["build.c++.gcc.modules.cxx11abi"] = {description = "Force to enable new cxx11 abi in C++ modules for gcc. (deprecated)", type = "boolean", default = false}, + ["build.c++.gcc.modules.cxx11abi"] = {description = "Force to enable new cxx11 abi in C++ modules for gcc. (deprecated)", type = "boolean"}, -- Set the default vs runtime, e.g. MT, MD ["build.c++.msvc.runtime"] = {description = "Set the default vs runtime.", type = "string", values = {"MT", "MD"}}, -- Enable cuda device link |
