aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-06-22 18:39:08 -0700
committerGravatar GitHub <noreply@github.com>2016-06-22 18:39:08 -0700
commit1fedcc9826e541612c3ecdcda65884d28728f575 (patch)
treea3e0f9978bac4cc7c76c0961df29d8b50df87e07
parentd93d3dd697ef91ca3d8c17c74c8f78230702abc1 (diff)
parent17233ceaa9a0150eeb0959cd7953ac8be100b413 (diff)
Merge pull request #7007 from kpayson64/ruby_ignore_unused
Ignore unused variables in ruby compilation
-rwxr-xr-xRakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index f208a24fd3..f44946fe93 100755
--- a/Rakefile
+++ b/Rakefile
@@ -77,7 +77,7 @@ task 'dlls' do
grpc_config = ENV['GRPC_CONFIG'] || 'opt'
verbose = ENV['V'] || '0'
- env = 'CPPFLAGS="-D_WIN32_WINNT=0x600 -DUNICODE -D_UNICODE" '
+ env = 'CPPFLAGS="-D_WIN32_WINNT=0x600 -DUNICODE -D_UNICODE -Wno-unused-variable -Wno-unused-result" '
env += 'LDFLAGS=-static '
env += 'SYSTEM=MINGW32 '
env += 'EMBED_ZLIB=true '