Skip to content
Snippets Groups Projects
Commit 1dc6276d authored by Ben Boeckel's avatar Ben Boeckel
Browse files

vtkCompilerWarningFlags: ignore psabi warnings

This warning is about GCC7+ having a different ABI than GCC6. Since GCC6
is no longer supported, we can ignore this ABI difference.
parent 256b026c
No related branches found
No related tags found
No related merge requests found
......@@ -162,5 +162,9 @@ elseif (VTK_ENABLE_EXTRA_BUILD_WARNINGS)
vtk_add_flag(-Wno-nonnull ${langs}) # issue 19462
vtk_add_flag(-Wno-strict-aliasing ${langs}) # issue 19463
# Irrelevant as GCC6 is not supported
# https://stackoverflow.com/questions/48149323/
vtk_add_flag(-Wno-psabi ${langs})
# Fortran flags.
endif ()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment