We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c8fc1 commit fe470c9Copy full SHA for fe470c9
tests/projects/c++/modules/test_headerunits.lua
@@ -44,7 +44,8 @@ function main(t)
44
-- _build()
45
elseif is_host("linux") then
46
local gcc = find_tool("gcc", {version = true})
47
- if gcc and gcc.version and semver.compare(gcc.version, "11.0") >= 0 then
+ if gcc and gcc.version and semver.compare(gcc.version, "11.0") >= 0 and
48
+ not is_host("arm64") then -- gcc/arm64: internal compiler error: in core_vals, at cp/module.cc:6108
49
-- gcc dependency detection doesn't support header units atm
50
os.exec("xmake f --policies=build.c++.gcc.fallbackscanner -c --yes")
51
_build()
0 commit comments