Skip to content

Commit c7d7daf

Browse files
committed
[tools] Suppress GCC ABI warning
Disable warning "note: parameter passing for argument of type '...' when C++17 is enabled changed to match C++14 in GCC 10.1"
1 parent 32fa118 commit c7d7daf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/build_script_generator/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ def common_compiler_flags(compiler, target):
274274
# "-Wold-style-cast",
275275
"-fstrict-enums",
276276
"-std=c++23",
277+
"-Wno-psabi",
277278
"-Wno-volatile", # volatile is deprecated in C++20 but lots of our external code uses it...
278279
# "-pedantic",
279280
]

0 commit comments

Comments
 (0)