Sha256: 53183988c5fe605a756e19108ab4b850e48897f6b6eaab8bc9b6def69f15454d

Contents?: true

Size: 726 Bytes

Versions: 6

Compression:

Stored size: 726 Bytes

Contents

#!/usr/bin/ruby

require 'mkmf'

ext_name = "google/protobuf_c"

dir_config(ext_name)

if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/
  $CFLAGS += " -std=gnu99 -O3 -DNDEBUG -fvisibility=hidden -Wall -Wsign-compare -Wno-declaration-after-statement"
else
  $CFLAGS += " -std=gnu99 -O3 -DNDEBUG"
end


if RUBY_PLATFORM =~ /linux/
  # Instruct the linker to point memcpy calls at our __wrap_memcpy wrapper.
  $LDFLAGS += " -Wl,-wrap,memcpy"
end

$VPATH << "$(srcdir)/third_party/utf8_range"
$INCFLAGS << "$(srcdir)/third_party/utf8_range"

$srcs = ["protobuf.c", "convert.c", "defs.c", "message.c",
         "repeated_field.c", "map.c", "ruby-upb.c", "wrap_memcpy.c",
         "utf8_range.c"]

create_makefile(ext_name)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
google-protobuf-3.20.0.rc.1-x86_64-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.20.0.rc.1-x86-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.20.0.rc.1-x86-linux ext/google/protobuf_c/extconf.rb
google-protobuf-3.20.0.rc.1-x64-mingw32 ext/google/protobuf_c/extconf.rb
google-protobuf-3.20.0.rc.1 ext/google/protobuf_c/extconf.rb
google-protobuf-3.20.0.rc.1-x86_64-darwin ext/google/protobuf_c/extconf.rb