Skip to content

Commit

Permalink
disable warning errors for crashpad
Browse files Browse the repository at this point in the history
  • Loading branch information
neodiX committed Apr 16, 2024
1 parent 0d90e04 commit d84c5cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions auto-build/macos-10.15/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@ test $? -eq 0 || { echo "Can't apply crashpad.patch"; exit 1; }

build/gyp_crashpad.py -Dmac_deployment_target=10.8
test $? -eq 0 || { echo "Can't prepare gyp_crashpad"; exit 1; }
find out/Debug -type f -name "*.ninja" -print0 | xargs -0 sed -i '' -e 's/-Werror//g'
ninja -C out/Debug
test $? -eq 0 || { echo "Can't configure debug gyp_crashpad"; exit 1; }
find out/Release -type f -name "*.ninja" -print0 | xargs -0 sed -i '' -e 's/-Werror//g'
ninja -C out/Release
test $? -eq 0 || { echo "Can't configure release gyp_crashpad"; exit 1; }

Expand Down

0 comments on commit d84c5cf

Please sign in to comment.