mirror of https://github.com/PCSX2/pcsx2.git
A few more flags that slipped by the last commits.
This commit is contained in:
parent
149f30c7fa
commit
6ad4345a39
|
@ -7,7 +7,11 @@ endif()
|
||||||
|
|
||||||
# plugin name
|
# plugin name
|
||||||
set(Output PADnull)
|
set(Output PADnull)
|
||||||
set(PadNullFinalFlags "")
|
set(PadNullFinalFlags
|
||||||
|
-fvisibility=hidden
|
||||||
|
-Wall
|
||||||
|
-Wno-parentheses
|
||||||
|
)
|
||||||
|
|
||||||
# PadNull sources
|
# PadNull sources
|
||||||
set(PadNullSources
|
set(PadNullSources
|
||||||
|
|
|
@ -25,6 +25,8 @@ set(CommonFlags
|
||||||
-Wstrict-aliasing # Allow to track strict aliasing issue.
|
-Wstrict-aliasing # Allow to track strict aliasing issue.
|
||||||
-Wunused-variable
|
-Wunused-variable
|
||||||
-Wno-parentheses
|
-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.
|
#Clang doesn't support a few common flags that GCC does.
|
||||||
|
|
Loading…
Reference in New Issue