yuzu-early-access: remove -Werror to work around deprecated functions in depdendent libraries
This commit is contained in:
parent
be3f50fd25
commit
31676758a7
1 changed files with 5 additions and 0 deletions
|
@ -87,6 +87,11 @@ stdenv.mkDerivation rec {
|
|||
# making the build fail, as that path does not exist
|
||||
dontFixCmake = true;
|
||||
|
||||
# -Werror causes build failures for deprecation warnings introduced by transitive dependency updates
|
||||
postPatch = ''
|
||||
sed -i '/-Werror/d' src/common/CMakeLists.txt
|
||||
'';
|
||||
|
||||
cmakeFlags = [
|
||||
"-DYUZU_USE_BUNDLED_QT=OFF"
|
||||
"-DYUZU_USE_BUNDLED_FFMPEG=OFF"
|
||||
|
|
Loading…
Reference in a new issue