From 0038ff49af882463c2af9049356eed7df45c3e8e Mon Sep 17 00:00:00 2001 From: micw523 Date: Tue, 23 Oct 2018 14:50:57 -0500 Subject: [PATCH] Remove Debug Statement for Win/MinGW (#5283) --- ruby/ext/google/protobuf_c/extconf.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ruby/ext/google/protobuf_c/extconf.rb b/ruby/ext/google/protobuf_c/extconf.rb index cc097e1185..0886e60708 100644 --- a/ruby/ext/google/protobuf_c/extconf.rb +++ b/ruby/ext/google/protobuf_c/extconf.rb @@ -2,9 +2,7 @@ require 'mkmf' -unless RUBY_PLATFORM =~ /mswin|mingw/ - $CFLAGS += " -std=c99 -O3 -DNDEBUG" -end +$CFLAGS += " -std=c99 -O3 -DNDEBUG" if RUBY_PLATFORM =~ /linux/