Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Disable psabi warning
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Jun 20, 2024
1 parent b25a904 commit c2e2e35
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cmake/modules/CompilerFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ macro(compiler_flags target)
if(NOT MSVC)
target_compile_options(
${target}
PRIVATE -Wall -pedantic -Wextra -Werror -Wno-unused-parameter
PRIVATE
-Wall
-pedantic
-Wextra
-Werror
-Wno-unused-parameter
-Wno-psabi
)
else()
# Suppress the following warnings:
Expand Down

0 comments on commit c2e2e35

Please sign in to comment.