From 76d4cd9306804eb30e35a367176c503eda25e1c8 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Tue, 18 Feb 2020 22:45:50 +0100 Subject: main/protobuf: fix ruby gem - missing symbol __va_copy --- main/protobuf/ruby-fix-cflags.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 main/protobuf/ruby-fix-cflags.patch (limited to 'main/protobuf/ruby-fix-cflags.patch') diff --git a/main/protobuf/ruby-fix-cflags.patch b/main/protobuf/ruby-fix-cflags.patch new file mode 100644 index 0000000000..690868d1ea --- /dev/null +++ b/main/protobuf/ruby-fix-cflags.patch @@ -0,0 +1,17 @@ +This fixes problem with missing symbol __va_copy, see +https://github.com/protocolbuffers/protobuf/pull/6848. + +--- a/ruby/ext/google/protobuf_c/extconf.rb ++++ b/ruby/ext/google/protobuf_c/extconf.rb +@@ -3,9 +3,9 @@ + require 'mkmf' + + if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ +- $CFLAGS += " -std=gnu90 -O3 -DNDEBUG -Wall -Wdeclaration-after-statement -Wsign-compare" ++ $CFLAGS += " -std=gnu99 -DNDEBUG -Wall -Wdeclaration-after-statement -Wsign-compare" + else +- $CFLAGS += " -std=gnu90 -O3 -DNDEBUG" ++ $CFLAGS += " -std=gnu99 -DNDEBUG" + end + + -- cgit v1.2.3