A few more flags that slipped by the last commits.

This commit is contained in:
Shanoah Alkire 2018-10-13 14:45:13 -07:00
parent 149f30c7fa
commit 6ad4345a39
2 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,11 @@ endif()
# plugin name
set(Output PADnull)
set(PadNullFinalFlags "")
set(PadNullFinalFlags
-fvisibility=hidden
-Wall
-Wno-parentheses
)
# PadNull sources
set(PadNullSources

View File

@ -25,6 +25,8 @@ set(CommonFlags
-Wstrict-aliasing # Allow to track strict aliasing issue.
-Wunused-variable
-Wno-parentheses
# Mute the warnings about the huge classes we initialise with memset.
-Wno-class-memaccess
)
#Clang doesn't support a few common flags that GCC does.