mirror of https://github.com/PCSX2/pcsx2.git
gsdx: fix compilation error with ICC
just require the -restrict compilation flag
This commit is contained in:
parent
76f38d3da0
commit
620876e0e7
|
@ -17,6 +17,10 @@ set(CommonFlags
|
||||||
-Wunused-variable # __dummy variable need to be investigated
|
-Wunused-variable # __dummy variable need to be investigated
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(USE_ICC)
|
||||||
|
set(CommonFlags "${CommonFlags} -restrict")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(GSdxFinalFlags ${CommonFlags})
|
set(GSdxFinalFlags ${CommonFlags})
|
||||||
|
|
||||||
if(XDG_STD)
|
if(XDG_STD)
|
||||||
|
|
Loading…
Reference in New Issue