Browse Source

Remove Debug Statement for Win/MinGW (#5283)

micw523 7 years ago
parent
commit
0038ff49af
1 changed files with 1 additions and 3 deletions
  1. 1 3
      ruby/ext/google/protobuf_c/extconf.rb

+ 1 - 3
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/